-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·49 lines (49 loc) · 1.11 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
{
"name": "zfr/zfr-cash",
"type": "library",
"license": "MIT",
"description": "Zend Framework 2 module that simplify payments with Stripe payment gateway",
"keywords": [
"stripe",
"payment",
"zf2"
],
"homepage": "https://github.com/zf-fr/zfr-cash",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.5",
"doctrine/orm": "~2.5",
"doctrine/doctrine-module": "~0.9",
"zfr/zfr-stripe-module": "~3.0",
"ddeboer/vatin": "1.3.*",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-http": "~2.2",
"zendframework/zend-eventmanager": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-servicemanager": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~4.1",
"squizlabs/php_codesniffer": "2.2.*"
},
"autoload": {
"psr-4": {
"ZfrCash\\": "src/"
},
"classmap": [
"./"
]
},
"autoload-dev": {
"psr-4": {
"ZfrCashTest\\": "tests/"
}
}
}