-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
68 lines (67 loc) · 2.12 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
{
"name": "kerrialn/ci-gen",
"description": "Generate continuous integration yaml config files or a dockerfile",
"keywords": ["generate files", "continuous integration", "CI yaml generator"],
"license": "MIT",
"authors": [
{ "name": "Kerrial Newham", "email": "[email protected]", "homepage": "https://github.com/kerrialn/" },
{ "name": "Tomas Votruba", "email": "[email protected]", "homepage": "https://tomasvotruba.com" }
],
"type": "project",
"require": {
"php": "^7.4",
"ext-ctype": "*",
"ext-iconv": "*",
"nette/utils": "^3.1",
"symfony/console": "5.0.*",
"symfony/dependency-injection": "^5.0",
"symfony/dotenv": "5.0.*",
"symfony/finder": "^5.0",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.0.*",
"symfony/http-kernel": "^5.0",
"symfony/yaml": "5.0.*",
"symplify/autowire-array-parameter": "^7.3",
"symplify/package-builder": "^7.3",
"symplify/smart-file-system": "^7.3",
"symplify/composer-json-manipulator": "^7.3"
},
"require-dev": {
"phpstan/phpstan": "^0.12.3",
"phpunit/phpunit": "^8.5",
"rector/rector": "^0.7.7",
"rskuipers/php-assumptions": "^0.8.0",
"symplify/easy-coding-standard": "^7.3",
"symplify/phpstan-extensions": "^7.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests"
}
},
"scripts": {
"check-cs": "vendor/bin/ecs check src tests --ansi",
"fix-cs": "vendor/bin/ecs check src tests --ansi --fix",
"phpstan": "vendor/bin/phpstan analyse --ansi --error-format symplify",
"rector": "vendor/bin/rector process --ansi"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "5.0.*"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}