forked from consolidation/robo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
103 lines (103 loc) · 3.03 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "consolidation/robo",
"description": "Modern task runner",
"license": "MIT",
"authors": [
{
"name": "Davert",
"email": "davert.php@resend.cc"
}
],
"autoload":{
"psr-4":{
"Robo\\":"src"
}
},
"autoload-dev":{
"psr-4":{
"Robo\\":"tests/src",
"RoboExample\\":"examples/src"
}
},
"bin":["robo"],
"require": {
"php": ">=7.1.3",
"consolidation/config": "^1.2.1|^2",
"consolidation/log": "^1.1.1|^2.0.1",
"consolidation/annotated-command": "^4.2.1",
"consolidation/output-formatters": "^4.1.1",
"consolidation/self-update": "^1.2",
"league/container": "^2.4.1",
"symfony/console": "^4.4.11|^5",
"symfony/event-dispatcher": "^4.4.11|^5",
"symfony/filesystem": "^4.4.11|^5",
"symfony/finder": "^4.4.11|^5",
"symfony/process": "^4.4.11|^5"
},
"require-dev": {
"g1a/composer-test-scenarios": "^3",
"phpunit/phpunit": "^6.5.14",
"natxet/cssmin": "3.0.4",
"patchwork/jsqueeze": "^2",
"pear/archive_tar": "^1.4.4",
"php-coveralls/php-coveralls": "^2.2",
"phpdocumentor/reflection-docblock": "^4.3.2",
"squizlabs/php_codesniffer": "^3"
},
"scripts": {
"cs": "./robo sniff",
"unit": "phpunit",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"test": [
"@lint",
"@unit",
"@cs"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "7.2.28"
}
},
"extra": {
"scenarios": {
"symfony4": {
"require": {
"symfony/console": "^4.4.11",
"symfony/event-dispatcher": "^4.4.11",
"symfony/filesystem": "^4.4.11",
"symfony/finder": "^4.4.11",
"symfony/process": "^4.4.11",
"phpunit/phpunit": "^6",
"nikic/php-parser": "^2"
},
"remove": [
"codeception/phpunit-wrapper"
],
"config": {
"platform": {
"php": "7.1.3"
}
}
}
},
"branch-alias": {
"dev-master": "2.x-dev",
"dev-main": "2.x-dev"
}
},
"suggest": {
"pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
"henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
"patchwork/jsqueeze": "For minifying JS files in taskMinify",
"natxet/cssmin": "For minifying CSS files in taskMinify"
},
"conflict": {
"codegyre/robo": "*"
}
}