-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
43 lines (43 loc) · 996 Bytes
/
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
{
"name": "spira/zuora-laravel-sdk",
"description": "Lumen/Laravel service provider for interfacing with Zuora SOAP API",
"keywords": [
"laravel",
"lumen",
"zuora",
"sdk",
"SOAP"
],
"license": "MIT",
"type": "project",
"require": {
"illuminate/support": "^5.2",
"monolog/monolog": "~1.0"
},
"require-dev": {
"symfony/var-dumper": "^3.0",
"satooshi/php-coveralls": "~1.0",
"phpunit/phpunit": "~4.0",
"mockery/mockery": "^0.9.4",
"fzaninotto/faker": "^1.4",
"fabpot/php-cs-fixer": "~1.11"
},
"autoload": {
"psr-4": {
"Spira\\ZuoraSdk\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"config": {
"preferred-install": "dist"
},
"scripts": {
"post-install-cmd": [
"cp -n storage/config.dist.php storage/config.php"
]
}
}