-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update symfony dependencies other than symfony/process to ^5 (#51)
- Loading branch information
1 parent
fb27099
commit ffabe66
Showing
8 changed files
with
5,019 additions
and
559 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
vendor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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": "[email protected]" | ||
}, | ||
{ | ||
"name": "Moshe Weitzman", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"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" | ||
} | ||
} | ||
} |
Oops, something went wrong.