-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 1.09 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": "phant/data-structure",
"description": "Manage data structure easily",
"license": "MIT",
"keywords": ["data structure", "entity", "value object", "aggregate", "collection", "enum", "value"],
"authors": [
{
"name": "Lenny ROUANET",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"phant/error": "1.*",
"ramsey/uuid": "4.*",
"firebase/php-jwt": "6.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^9.5"
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix ./ --rules=@PSR12",
"analyse": "vendor/bin/phpstan analyse component test -c phpstan.neon --memory-limit=4G",
"test": "vendor/bin/phpunit test --testdox",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html .public/code-coverage"
},
"autoload": {
"psr-4": {
"Phant\\DataStructure\\": "component/",
"Test\\": "test/"
}
}
}