forked from conferencetools/tickets-module
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
75 lines (74 loc) · 2.41 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
{
"name": "opentickets/opentickets",
"description": "Ticket selling application",
"license": "MIT",
"require": {
"php": ">=7.0.5",
"carnage/cqrs": "~0.1.2",
"carnage/cqorms": "~0.1.0",
"doctrine/doctrine-orm-module": "^1.0.0",
"doctrine/common": "^2.6.0",
"neilime/zf2-twb-bundle": "2.*@stable",
"zf-commons/zfc-rbac": "~2.4",
"zendframework/zend-authentication": "^2.5",
"zendframework/zend-cache": "^2.5",
"zendframework/zend-captcha": "^2.5",
"zendframework/zend-code": "^2.5",
"zendframework/zend-config": "^2.5",
"zendframework/zend-console": "^2.5",
"zendframework/zend-crypt": "^2.5",
"zendframework/zend-debug": "^2.5",
"zendframework/zend-dom": "^2.5",
"zendframework/zend-escaper": "^2.5",
"zendframework/zend-eventmanager": "^2.5",
"zendframework/zend-file": "^2.5",
"zendframework/zend-filter": "^2.5",
"zendframework/zend-form": "^2.5",
"zendframework/zend-http": "^2.5",
"zendframework/zend-i18n": "^2.5",
"zendframework/zend-i18n-resources": "^2.5",
"zendframework/zend-inputfilter": "^2.5",
"zendframework/zend-json": "^2.5",
"zendframework/zend-log": "^2.5",
"zendframework/zend-mail": "^2.5",
"zendframework/zend-math": "^2.5",
"zendframework/zend-memory": "^2.5",
"zendframework/zend-mime": "^2.5",
"zendframework/zend-modulemanager": "^2.5",
"zendframework/zend-mvc": "^2.5",
"zendframework/zend-navigation": "^2.5",
"zendframework/zend-paginator": "^2.5",
"zendframework/zend-serializer": "^2.5",
"zendframework/zend-servicemanager": "^2.5",
"zendframework/zend-session": "^2.5",
"zendframework/zend-stdlib": "^2.5",
"zendframework/zend-tag": "^2.5",
"zendframework/zend-test": "^2.5",
"zendframework/zend-text": "^2.5",
"zendframework/zend-uri": "^2.5",
"zendframework/zend-validator": "^2.5",
"zendframework/zend-version": "^2.5",
"zendframework/zend-view": "^2.5",
"zendframework/zendxml": "^1.0.1",
"zfr/zfr-stripe-module": "~4.0",
"crossjoin/pre-mailer": "^1.0",
"carnage/zendfony-cli": "~0.1.0"
},
"autoload": {
"psr-4": {
"OpenTickets\\Tickets\\": "module/Tickets/src"
}
},
"autoload-dev": {
"psr-4": {
"OpenTickets\\Tickets\\": "module/Tickets/test/unit"
}
},
"require-dev": {
"mockery/mockery": "~0.9.1",
"phpunit/phpunit": "^5.7"
},
"platform": {
"php": "7.0.0"
}
}