mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
* chore(deps): update dependencies * feat(tests): add matrix testing, problem matcher * feat(lint): add php-cs-fixer, fix codebase
51 lines
1.3 KiB
JSON
51 lines
1.3 KiB
JSON
{
|
|
"name": "superhelio/commands",
|
|
"description": "This is a collection of Laravel Artisan commands created to help everyone in their development work.",
|
|
"keywords": [
|
|
"laravel",
|
|
"superhelio",
|
|
"commands"
|
|
],
|
|
"homepage": "https://github.com/superhelio/commands",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "SuperHelio",
|
|
"email": "hello@superhelio.com",
|
|
"homepage": "https://superhelio.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.4|^8",
|
|
"illuminate/support": "^5.3|^6|^7|^8|^9|^10|^11",
|
|
"doctrine/dbal": "^2.5|^2.6|^3"
|
|
},
|
|
"require-dev": {
|
|
"roave/security-advisories": "dev-master",
|
|
"phpunit/phpunit": "^8.0",
|
|
"orchestra/testbench": "^3.3|^4|^5|^6|^7|^8",
|
|
"friendsofphp/php-cs-fixer": "^3.9"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Superhelio\\Commands\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Superhelio\\Commands\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --allow-risky=yes",
|
|
"test": "phpunit",
|
|
"test-ci": "phpunit --teamcity"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0-dev"
|
|
}
|
|
}
|
|
}
|