You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
792 B
33 lines
792 B
{ |
|
"name": "myclabs/php-enum", |
|
"type": "library", |
|
"description": "PHP Enum implementation", |
|
"keywords": ["enum"], |
|
"homepage": "http://github.com/myclabs/php-enum", |
|
"license": "MIT", |
|
"authors": [ |
|
{ |
|
"name": "PHP Enum contributors", |
|
"homepage": "https://github.com/myclabs/php-enum/graphs/contributors" |
|
} |
|
], |
|
"autoload": { |
|
"psr-4": { |
|
"MyCLabs\\Enum\\": "src/" |
|
} |
|
}, |
|
"autoload-dev": { |
|
"psr-4": { |
|
"MyCLabs\\Tests\\Enum\\": "tests/" |
|
} |
|
}, |
|
"require": { |
|
"php": "^7.3 || ^8.0", |
|
"ext-json": "*" |
|
}, |
|
"require-dev": { |
|
"phpunit/phpunit": "^9.5", |
|
"squizlabs/php_codesniffer": "1.*", |
|
"vimeo/psalm": "^4.6.2" |
|
} |
|
}
|
|
|