forked from doctrine/DoctrineModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
97 lines (97 loc) · 3.19 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "doctrine/doctrine-module",
"description": "Zend Framework Module that provides Doctrine basic functionality required for ORM and ODM modules",
"type": "library",
"license": "MIT",
"homepage": "http://www.doctrine-project.org/",
"keywords": [
"doctrine",
"module",
"zf"
],
"authors": [
{
"name": "Kyle Spraggs",
"email": "[email protected]",
"homepage": "http://www.spiffyjr.me/"
},
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://marco-pivetta.com/"
},
{
"name": "Guilherme Blanco",
"email": "[email protected]"
},
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"extra": {
"zf": {
"module": "DoctrineModule"
},
"branch-alias": {
"dev-1.2-dev": "1.2-dev",
"dev-2.0-dev": "2.0-dev",
"dev-master": "1.2-dev",
"dev-develop": "2.0-dev"
}
},
"require": {
"php": "^5.6 || ^7.0",
"doctrine/common": "^2.6.1",
"doctrine/cache": "^1.6",
"symfony/console": "^2.3 || ^3.0",
"zendframework/zend-authentication": "^2.5.3",
"zendframework/zend-cache": "^2.7.1",
"zendframework/zend-form": "^2.9",
"zendframework/zend-hydrator": "^1.1 || ^2.2.1",
"zendframework/zend-mvc": "^2.7.10 || ^3.0.1",
"zendframework/zend-paginator": "^2.7",
"zendframework/zend-servicemanager": "^2.7.6 || ^3.1",
"zendframework/zend-stdlib": "^2.7.7 || ^3.0.1",
"zendframework/zend-validator": "^2.8.1"
},
"require-dev": {
"phpunit/phpunit": "^4.8",
"squizlabs/php_codesniffer": "^2.7",
"zendframework/zend-i18n": "^2.7.3",
"zendframework/zend-log": "^2.9",
"zendframework/zend-modulemanager": "^2.7.2",
"zendframework/zend-serializer": "^2.8",
"zendframework/zend-session": "^2.7.3",
"zendframework/zend-test": "^2.6.1 || ^3.0.1",
"zendframework/zend-version": "^2.5.1"
},
"suggest": {
"doctrine/data-fixtures": "Data Fixtures if you want to generate test data or bootstrap data for your deployments",
"zendframework/zend-mvc-console": "^1.1.10 if you are using ZF3"
},
"autoload": {
"psr-0": {
"DoctrineModule\\": "src/"
}
},
"autoload-dev": {
"psr-0": {
"DoctrineModuleTest\\": "tests/"
}
},
"bin": [
"bin/doctrine-module"
],
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --coverage-clover build/clover.xml"
}
}