-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 904 Bytes
/
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
36
{
"name": "ulyssear/flexible-collections",
"description": "Lightweight & flexible collections for PHP 8",
"type": "library",
"version": "1.2.3",
"license": "MIT",
"authors": [
{
"name": "Ulysse ARNAUD",
"email": "ulysse@arnaud.tech"
}
],
"scripts": {
"test": "phpunit",
"static-analysis": "phpstan analyse --level=7 src tests",
"code-style": "php-cs-fixer fix --config=.php_cs.dist.php --verbose --diff --dry-run",
"checks": [
"@test",
"@static-analysis",
"@code-style"
]
},
"autoload": {
"psr-4": {
"Ulyssear\\": "src"
}
},
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": ">=10",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.12"
}
}