-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 1.13 KB
/
composer.json
File metadata and controls
35 lines (35 loc) · 1.13 KB
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": "derafu/enum",
"description": "Derafu: Enum - Yet Another List of Enumerations for PHP",
"type": "library",
"homepage": "https://www.derafu.dev/docs/standards/enum",
"license": "MIT",
"authors": [
{
"name": "Esteban De La Fuente Rubio / Derafu",
"homepage": "https://www.derafu.dev"
}
],
"support": {
"issues": "https://github.com/derafu/enum/issues",
"source": "https://github.com/derafu/enum"
},
"autoload": {
"psr-4": {
"Derafu\\Enum\\": "src/"
}
},
"require": {
"php": "^8.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.94",
"phpstan/phpstan": "^1.12"
},
"scripts": {
"phpcs-fix": "vendor/bin/php-cs-fixer fix -v --config=php-cs-fixer.php",
"phpcs": "vendor/bin/php-cs-fixer fix -v --dry-run --diff --config=php-cs-fixer.php",
"phpstan": "vendor/bin/phpstan analyse --configuration=phpstan.neon --memory-limit=1G",
"phpstan-export": "vendor/bin/phpstan analyse --configuration=phpstan.neon --level 9 --generate-baseline"
}
}