Add pear modules, mail and net_smtp via composer (#93)
Add pear modules, mail and net_smtp via composer, remove php 5.6 build due to phpunit 6
This commit is contained in:
@@ -9,9 +9,6 @@
|
||||
}
|
||||
],
|
||||
"autoload":{
|
||||
"classmap": [
|
||||
"scripts/composer/ScriptHandler.php"
|
||||
],
|
||||
"psr-4":{
|
||||
"Robo\\":"src"
|
||||
}
|
||||
@@ -26,43 +23,67 @@
|
||||
"php": ">=5.5.0",
|
||||
"league/container": "^2.2",
|
||||
"consolidation/log": "~1",
|
||||
"consolidation/annotated-command": "^2.0.1",
|
||||
"consolidation/output-formatters": "^2.1.2|~3",
|
||||
"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/config": "^1.0.1",
|
||||
"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",
|
||||
"natxet/CssMin": "3.0.4",
|
||||
"pear/archive_tar": "^1.4.2",
|
||||
"codeception/base": "^2.2.6",
|
||||
"codeception/base": "^2.3.7",
|
||||
"codeception/verify": "^0.3.2",
|
||||
"codeception/aspect-mock": "~1",
|
||||
"satooshi/php-coveralls": "~1",
|
||||
"squizlabs/php_codesniffer": "~2",
|
||||
"phpunit/php-code-coverage": "~2|~4"
|
||||
"codeception/aspect-mock": "^1|^2.1.1",
|
||||
"greg-1-anderson/composer-test-scenarios": "^1",
|
||||
"satooshi/php-coveralls": "^2",
|
||||
"phpunit/php-code-coverage": "~2|~4",
|
||||
"squizlabs/php_codesniffer": "^2.8"
|
||||
},
|
||||
"scripts": {
|
||||
"pre-install-cmd": [
|
||||
"Robo\\composer\\ScriptHandler::checkDependencies"
|
||||
"cs": "./robo sniff",
|
||||
"unit": "./robo test",
|
||||
"lint": [
|
||||
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
|
||||
"find tests/src -name '*.php' -print0 | xargs -0 -n1 php -l"
|
||||
],
|
||||
"cs": "/robo sniff",
|
||||
"test": "./robo test"
|
||||
"test": [
|
||||
"@lint",
|
||||
"@unit",
|
||||
"@cs"
|
||||
],
|
||||
"scenario": "scenarios/install",
|
||||
"pre-install-cmd": [
|
||||
"Robo\\composer\\ScriptHandler::checkDependencies"
|
||||
],
|
||||
"post-update-cmd": [
|
||||
"create-scenario symfony4 'symfony/console:^4.0' --platform-php '7.1.3'",
|
||||
"create-scenario symfony2 'symfony/console:^2.8' --platform-php '5.5.9' --no-lockfile"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"optimize-autoloader": true,
|
||||
"sort-packages": true,
|
||||
"platform": {
|
||||
"php": "5.6.3"
|
||||
}
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "1.x-dev"
|
||||
"dev-master": "1.x-dev",
|
||||
"dev-state": "1.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 JS files in taskMinify"
|
||||
"natxet/CssMin": "For minifying CSS files in taskMinify"
|
||||
},
|
||||
"replace": {
|
||||
"codegyre/robo": "< 1.0"
|
||||
|
||||
Reference in New Issue
Block a user