-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 1.08 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "marc-mabe/enum-cl",
"description": "Compatibility layer for emulating enumerations in PHP < 8.1 and native enumerations in PHP >= 8.1",
"type": "library",
"keywords": [
"enum", "enumeration", "enumerator", "case", "cases",
"type", "typehint", "type-hint",
"polyfill", "compatibility", "emulate", "emulated"
],
"homepage": "https://github.com/marc-mabe/php-enum-cl",
"authors": [{
"name": "Marc Bennewitz",
"email": "[email protected]",
"homepage": "https://mabe.berlin/",
"role": "Lead"
}],
"license": "BSD-3-Clause",
"require": {
"php": "^7.1 | ^8.0",
"ext-reflection": "*",
"composer-runtime-api": "^2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.3.0",
"phpunit/phpunit": "^7.5.20 | ^8.5.22 | ^9.5.11",
"vimeo/psalm": "^4.17.0"
},
"autoload": {
"psr-4": {
"Mabe\\Enum\\Cl\\": "src/psr-4",
"": "src/stubs"
},
"files": [ "src/functions.php" ]
}
}