mirror of
https://github.com/superhelio/commands.git
synced 2026-01-26 11:44:01 +00:00
48 lines
1.2 KiB
JSON
48 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.3",
|
|
"illuminate/support": "^5.3|^6.0|^7.0|^8.0",
|
|
"doctrine/dbal": "^2.5|^2.6"
|
|
},
|
|
"require-dev": {
|
|
"roave/security-advisories": "dev-master",
|
|
"phpunit/phpunit" : "^8.0",
|
|
"orchestra/testbench": "^3.3|^4|^5|^6"
|
|
},
|
|
"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"
|
|
}
|
|
}
|
|
}
|