mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 03:33:59 +00:00
47 lines
1.1 KiB
JSON
47 lines
1.1 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" : ">=5.6.0",
|
|
"illuminate/support": "~5.2"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit" : "^4.0|^5.0",
|
|
"orchestra/testbench": "~3.0",
|
|
"doctrine/dbal": "~2.3"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|