73 lines
1.9 KiB
JSON
Executable File
73 lines
1.9 KiB
JSON
Executable File
{
|
|
"name": "bensampo/laravel-enum",
|
|
"type": "library",
|
|
"description": "Simple, extensible and powerful enumeration implementation for Laravel.",
|
|
"keywords": [
|
|
"bensampo",
|
|
"enum",
|
|
"laravel",
|
|
"package",
|
|
"validation"
|
|
],
|
|
"homepage": "https://github.com/bensampo/laravel-enum",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Ben Sampson",
|
|
"homepage": "https://sampo.co.uk",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^7.3|^8.0",
|
|
"hanneskod/classtools": "^1.2",
|
|
"illuminate/contracts": "^8.0",
|
|
"illuminate/support": "^8.0",
|
|
"laminas/laminas-code": "^3.4|^4.0",
|
|
"nikic/php-parser": "^4.10"
|
|
},
|
|
"require-dev": {
|
|
"doctrine/dbal": "^2.9|^3.0",
|
|
"orchestra/testbench": "^6.2",
|
|
"mockery/mockery": "^1.4",
|
|
"phpstan/phpstan": "^0.12.59",
|
|
"phpunit/phpunit": "^8.5",
|
|
"squizlabs/php_codesniffer": "^3.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"BenSampo\\Enum\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"BenSampo\\Enum\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"check-style": "phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
|
|
"fix-style": "phpcbf -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.0-dev"
|
|
},
|
|
"laravel": {
|
|
"providers": [
|
|
"BenSampo\\Enum\\EnumServiceProvider"
|
|
]
|
|
},
|
|
"phpstan": {
|
|
"includes": [
|
|
"extension.neon"
|
|
]
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable" : true
|
|
}
|