mirror of
https://github.com/archtechx/enums.git
synced 2025-12-12 03:54:03 +00:00
45 lines
988 B
JSON
45 lines
988 B
JSON
{
|
|
"name": "archtechx/enums",
|
|
"description": "Helpers for making PHP enums more lovable.",
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Samuel Štancl",
|
|
"email": "samuel@archte.ch"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"ArchTech\\Enums\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"ArchTech\\Enums\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": "^8.1"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^8.0 || ^9.0",
|
|
"larastan/larastan": "^2.4",
|
|
"pestphp/pest": "^2.0",
|
|
"pestphp/pest-plugin-laravel": "^2.0"
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"config": {
|
|
"allow-plugins": {
|
|
"pestphp/pest-plugin": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"phpstan": {
|
|
"includes": [
|
|
"extension.neon"
|
|
]
|
|
}
|
|
}
|
|
}
|