-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (88 loc) · 2.57 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "jellybellydev/ci-cd-theory-into-practice",
"description": "CI⚡CD: the theory put into practice",
"type": "project",
"keywords": ["ci", "cd", "gitlab", "ansible"],
"authors": [
{
"name": "Andrea Giannantonio",
"email": "[email protected]"
}
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"ext-ctype": "*",
"ext-iconv": "*",
"sensio/framework-extra-bundle": "^6.0",
"symfony/console": "^5.2",
"symfony/dotenv": "^5.2",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "^5.2",
"symfony/yaml": "^5.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.18",
"psalm/plugin-symfony": "^2.1",
"roave/security-advisories": "dev-latest",
"symfony/browser-kit": "^5.2",
"symfony/phpunit-bridge": "^5.2",
"symfony/stopwatch": "^5.2",
"symfony/twig-bundle": "^5.2",
"symfony/web-profiler-bundle": "^5.2",
"vimeo/psalm": "^4.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"docker:build": "docker build -t jellybellydev/ci-cd-theory-into-practice:latest -f .docker/Dockerfile .",
"docker:push": "docker push jellybellydev/ci-cd-theory-into-practice:latest",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix -v",
"phpstan": "vendor/bin/phpstan analyse",
"psalm": "vendor/bin/psalm",
"test": "bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage bin/phpunit --coverage-text",
"test-coverage-no-colors": "XDEBUG_MODE=coverage bin/phpunit --colors=never --coverage-text"
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^5.2"
}
}
}