This repository has been archived by the owner on Jan 30, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
72 lines (72 loc) · 2.3 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
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "zendframework/zend-hydrator",
"description": "Serialize objects to arrays, and vice versa",
"license": "BSD-3-Clause",
"keywords": [
"zf",
"zendframework",
"hydrator"
],
"support": {
"docs": "https://docs.zendframework.com/zend-hydrator/",
"issues": "https://github.com/zendframework/zend-hydrator/issues",
"source": "https://github.com/zendframework/zend-hydrator",
"rss": "https://github.com/zendframework/zend-hydrator/releases.atom",
"chat": "https://zendframework-slack.herokuapp.com",
"forum": "https://discourse.zendframework.com/c/questions/components"
},
"require": {
"php": "^7.2",
"zendframework/zend-stdlib": "^3.2.1"
},
"require-dev": {
"phpspec/prophecy": "^1.7.5",
"phpstan/phpstan": "^0.10.5",
"phpunit/phpunit": "^8.0",
"zendframework/zend-coding-standard": "~1.0.0",
"zendframework/zend-eventmanager": "^3.2.1",
"zendframework/zend-modulemanager": "^2.8",
"zendframework/zend-serializer": "^2.9",
"zendframework/zend-servicemanager": "^3.3.2"
},
"suggest": {
"zendframework/zend-eventmanager": "^3.2, to support aggregate hydrator usage",
"zendframework/zend-serializer": "^2.9, to use the SerializableStrategy",
"zendframework/zend-servicemanager": "^3.3, to support hydrator plugin manager usage"
},
"autoload": {
"psr-4": {
"Zend\\Hydrator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ZendTest\\Hydrator\\": "test/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-release-2.4": "2.4.x-dev",
"dev-master": "3.0.x-dev",
"dev-develop": "3.1.x-dev"
},
"zf": {
"component": "Zend\\Hydrator",
"config-provider": "Zend\\Hydrator\\ConfigProvider"
}
},
"scripts": {
"analyse": "phpstan analyse --no-progress",
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}