Files
commands/composer.json

52 lines
1.2 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.0",
"illuminate/support": "^5.3|^5.4|^5.5",
"doctrine/dbal": "^2.5|^2.6"
},
"require-dev": {
"phpunit/phpunit" : "^5.0",
"orchestra/testbench": "~3.0"
},
"autoload": {
"psr-4": {
"Superhelio\\Commands\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Superhelio\\Commands\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
},
"laravel": {
"providers": [
"Superhelio\\Commands\\ServiceProvider"
]
}
}
}