-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
59 lines (59 loc) · 1.75 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "doctrine/doctrine-laminas-hydrator",
"description": "Doctrine hydrators for Laminas applications",
"license": "MIT",
"keywords": [
"doctrine",
"hydrator",
"laminas"
],
"support": {
"issues": "https://github.com/doctrine/doctrine-laminas-hydrator/issues",
"source": "https://github.com/doctrine/doctrine-laminas-hydrator",
"rss": "https://github.com/doctrine/doctrine-laminas-hydrator/releases.atom"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"ext-ctype": "*",
"doctrine/collections": "^2.0.0",
"doctrine/inflector": "^2.0.4",
"doctrine/persistence": "^3.4.0 || ^4.0.0",
"laminas/laminas-hydrator": "^4.13.0",
"laminas/laminas-stdlib": "^3.14.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"phpdocumentor/guides-cli": "^1.5.0",
"phpstan/phpstan": "^2.0.2",
"phpstan/phpstan-deprecation-rules": "^2.0.0",
"phpunit/phpunit": "^10.5.38"
},
"autoload": {
"psr-4": {
"Doctrine\\Laminas\\Hydrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DoctrineTest\\Laminas\\Hydrator\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs-check",
"@phpstan",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"phpstan": "phpstan analyse",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover=coverage.xml"
}
}