Skip to content

Commit

Permalink
Update symfony dependencies other than symfony/process to ^5 (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed May 28, 2020
1 parent fb27099 commit ffabe66
Show file tree
Hide file tree
Showing 8 changed files with 5,019 additions and 559 deletions.
1 change: 1 addition & 0 deletions .scenarios.lock/symfony4/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor
81 changes: 81 additions & 0 deletions .scenarios.lock/symfony4/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
{
"name": "consolidation/site-process",
"description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
"license": "MIT",
"authors": [
{
"name": "Greg Anderson",
"email": "greg.1.anderson@greenknowe.org"
},
{
"name": "Moshe Weitzman",
"email": "weitzman@tejasa.com"
}
],
"autoload": {
"psr-4": {
"Consolidation\\SiteProcess\\": "../../src"
}
},
"autoload-dev": {
"psr-4": {
"Consolidation\\SiteProcess\\": "../../tests/src"
}
},
"require": {
"symfony/console": "^4.4.8",
"symfony/event-dispatcher": "^4.4.8",
"symfony/filesystem": "^4.4.8",
"symfony/finder": "^4.4.8",
"php": ">=7.1.3",
"consolidation/config": "^1.2.1|^2",
"consolidation/site-alias": "^3",
"symfony/process": "^4.3.4"
},
"require-dev": {
"consolidation/robo": "^1.4.10|^2",
"knplabs/github-api": "^2.7",
"php-http/guzzle6-adapter": "^1.1",
"phpunit/phpunit": "^6.5.14",
"g1a/composer-test-scenarios": "^3.0.4",
"php-coveralls/php-coveralls": "^2.2",
"squizlabs/php_codesniffer": "^2.9.2"
},
"scripts": {
"phar:install-tools": [
"gem install mime-types -v 2.6.2",
"curl -LSs https://box-project.github.io/box2/installer.php | php",
"mkdir -p tools",
"mv -f box.phar tools/box"
],
"phar:build": "env PATH=tools:$PATH box build",
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"unit": "phpunit --colors=always",
"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"
],
"release": [
"release VERSION"
]
},
"config": {
"platform": {
"php": "7.1.3"
},
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": "../../vendor"
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev"
}
}
}
Loading

0 comments on commit ffabe66

Please sign in to comment.