Skip to content

Commit

Permalink
Fixes #648: Allow Symfony 4 components in composer.json. Update to fi…
Browse files Browse the repository at this point in the history
…x Symfony/Process 4.x API convention change: working directory must be explicitly provided. Make our own copy of Symfony ProcessUtils, since escapeArgument() is removed in Symfony 4.
  • Loading branch information
greg-1-anderson committed Dec 11, 2017
1 parent b7a64b8 commit 4ae8d85
Show file tree
Hide file tree
Showing 11 changed files with 543 additions and 452 deletions.
31 changes: 18 additions & 13 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,28 +22,34 @@
}
},
"bin":["robo"],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/greg-1-anderson/yaml-expander"
}
],
"require": {
"php": ">=5.5.0",
"league/container": "^2.2",
"consolidation/log": "~1",
"consolidation/config": "^1.0.1",
"consolidation/annotated-command": "^2.8.1",
"consolidation/output-formatters": "^3.1.5",
"symfony/finder": "~2.5|~3.0",
"symfony/console": "~2.8|~3.0",
"symfony/process": "~2.5|~3.0",
"symfony/filesystem": "~2.5|~3.0",
"symfony/event-dispatcher": "~2.5|~3.0"
"consolidation/annotated-command": "^2.8.2",
"consolidation/output-formatters": "^3.1.13",
"grasmash/yaml-expander": "^1.3",
"symfony/finder": "^2.5|^3|^4",
"symfony/console": "^2.8|^3|^4",
"symfony/process": "^2.5|^3|^4",
"symfony/filesystem": "^2.5|^3|^4",
"symfony/event-dispatcher": "^2.5|^3|^4"
},
"require-dev": {
"patchwork/jsqueeze": "~2",
"henrikbjorn/lurker": "~1",
"natxet/CssMin": "3.0.4",
"pear/archive_tar": "^1.4.2",
"codeception/base": "^2.2.6",
"codeception/codeception": "2.3.x-dev",
"codeception/verify": "^0.3.2",
"codeception/aspect-mock": "~1",
"satooshi/php-coveralls": "~1",
"codeception/aspect-mock": "dev-master",
"satooshi/php-coveralls": "^2",
"phpunit/php-code-coverage": "~2|~4",
"squizlabs/php_codesniffer": "^2.8"
},
Expand All @@ -56,10 +62,9 @@
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"platform": {
"php": "5.6"
"php": "7.1.3"
}
},
"extra": {
Expand Down
Loading

0 comments on commit 4ae8d85

Please sign in to comment.