-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
36
37
38
39
40
{
"name": "gravatalonga/hydrator",
"description": "Hydrator class from array to object or objecto to array",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^2.18",
"infection/infection": "^0.21.5",
"phly/keep-a-changelog": "^2.11",
"rector/rector": "^0.13.4"
},
"autoload": {
"psr-4": {
"Gravatalonga\\Hydrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Jonathan Fontes",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0 || ^7.4",
"phpstan/phpstan": "^1.7"
},
"scripts": {
"phpstan": "phpstan analyze -l max src",
"fix-style": "php-cs-fixer fix",
"test": "XDEBUG_MODE=coverage phpunit",
"rector": "rector process"
}
}