Skip to content

Commit ee74612

Browse files
Try with symfony/finder ^5 (#992)
* Try with symfony/finder ^5 * Also test finder5 scenario * Use stable versions
1 parent 677ba8f commit ee74612

File tree

10 files changed

+4516
-315
lines changed

10 files changed

+4516
-315
lines changed

.scenarios.lock/finder5/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vendor

.scenarios.lock/finder5/composer.json

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"name": "consolidation/robo",
3+
"description": "Modern task runner",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Davert",
8+
"email": "davert.php@resend.cc"
9+
}
10+
],
11+
"autoload": {
12+
"psr-4": {
13+
"Robo\\": "../../src"
14+
}
15+
},
16+
"autoload-dev": {
17+
"psr-4": {
18+
"Robo\\": "../../tests/src",
19+
"RoboExample\\": "../../examples/src"
20+
}
21+
},
22+
"bin": [
23+
"robo"
24+
],
25+
"require": {
26+
"symfony/finder": "^5",
27+
"php": ">=5.5.0",
28+
"consolidation/annotated-command": "^2.12.1|^4.1",
29+
"consolidation/config": "^1.2.1",
30+
"consolidation/log": "^1.1.1|^2",
31+
"consolidation/output-formatters": "^3.5.1|^4.1",
32+
"consolidation/self-update": "^1.1.5",
33+
"grasmash/yaml-expander": "^1.4",
34+
"league/container": "^2.4.1",
35+
"symfony/console": "^2.8|^3|^4",
36+
"symfony/event-dispatcher": "^2.5|^3|^4",
37+
"symfony/filesystem": "^2.5|^3|^4",
38+
"symfony/process": "^2.5|^3|^4"
39+
},
40+
"require-dev": {
41+
"g1a/composer-test-scenarios": "^3",
42+
"natxet/cssmin": "3.0.4",
43+
"patchwork/jsqueeze": "^2",
44+
"pear/archive_tar": "^1.4.4",
45+
"php-coveralls/php-coveralls": "^1",
46+
"phpunit/phpunit": "^5.7.27",
47+
"squizlabs/php_codesniffer": "^3"
48+
},
49+
"scripts": {
50+
"cs": "./robo sniff",
51+
"unit": "phpunit",
52+
"lint": [
53+
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
54+
"find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
55+
],
56+
"test": [
57+
"@lint",
58+
"@unit",
59+
"@cs"
60+
],
61+
"pre-install-cmd": [
62+
"Robo\\composer\\ScriptHandler::checkDependencies"
63+
]
64+
},
65+
"config": {
66+
"platform": {
67+
"php": "7.2.5"
68+
},
69+
"optimize-autoloader": true,
70+
"sort-packages": true,
71+
"vendor-dir": "../../vendor"
72+
},
73+
"extra": {
74+
"branch-alias": {
75+
"dev-master": "1.x-dev"
76+
}
77+
},
78+
"suggest": {
79+
"pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
80+
"henrikbjorn/lurker": "For monitoring filesystem changes in taskWatch",
81+
"patchwork/jsqueeze": "For minifying JS files in taskMinify",
82+
"natxet/CssMin": "For minifying CSS files in taskMinify"
83+
},
84+
"replace": {
85+
"codegyre/robo": "< 1.0"
86+
}
87+
}

0 commit comments

Comments
 (0)