-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
90 lines (90 loc) · 2.91 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
{
"name": "levarion/moonwalker-api",
"description": "Customized PHP Rest framework.",
"keywords": ["levarion", "moonwalker-api", "micro", "rest", "restful", "api"],
"homepage": "https://moonwalker.levarion.com",
"support": {
"issues": "https://bitbucket.org/levarion/moonwalker-api/issues",
"source": "https://bitbucket.org/levarion/moonwalker-api"
},
"license": "Custom",
"type": "library",
"authors": [
{
"name": "Paul S.",
"email": "[email protected]",
"homepage": "https://winterei.se",
"role": "Lead Code Monkey"
},
{
"name": "Harry Chan",
"email": "[email protected]",
"homepage": "https://www.levarion.com",
"role": "Code Compiler"
},
{
"name": "Benny Tsai",
"email": "[email protected]",
"homepage": "https://www.levarion.com",
"role": "Programmer"
},
{
"name": "Lisa Ko",
"email": "[email protected]",
"homepage": "https://www.levarion.com",
"role": "Programmer"
}
],
"require": {
"league/route": "^3",
"league/booboo": "^2",
"zendframework/zend-diactoros": "^1.5",
"monolog/monolog": "^1.23",
"vlucas/valitron": "^1.4",
"lcobucci/jwt": "^3.2",
"sabre/event": "^5",
"swiftmailer/swiftmailer": "^6",
"jmhobbs/swiftmailer-transport-aws-ses": "^0.9.2",
"google/recaptcha": "~1.1",
"php-http/guzzle6-adapter": "^1.1",
"payum/stripe": "^1.4",
"payum-tw/ecpay": "^1.1",
"payum-tw/esunbank": "^1.1",
"payum/paypal-rest": "^1.4",
"payum/paypal-ipn": "^1.4",
"payum/omnipay-v3-bridge": "^1",
"florianv/swap": "^3.1",
"php-http/message": "^1.6",
"geoip2/geoip2": "~2.0",
"predis/predis": "^1.1",
"maghead/maghead": "dev-master",
"easypost/easypost-php": "^3.3",
"webonyx/graphql-php": "^0.10",
"simplesamlphp/saml2": "^2.0",
"jamesryanbell/cloudflare": "^1.11",
"twilio/sdk": "^5.13",
"nexmo/client": "^1.0.0",
"microsoft/windowsazure": "^0.5",
"aws/aws-sdk-php": "^3.36",
"bjeavons/zxcvbn-php": "^0.3"
},
"require-dev": {
"phpunit/phpunit" : "^6.0",
"fzaninotto/faker": "~1.4"
},
"bin": ["bin/phprest"],
"autoload": {
"psr-4": {
"Moonwalker\\": "app",
"Moonwalker\\Core\\": "core",
"Moonwalker\\Schema\\": "app/Schema",
"Moonwalker\\Seeders\\": "app/Seeders"
}
},
"suggest": {
"ext-msgpack": "Enables support for application/msgpack and application/x-msgpack handling",
"ext-apcu": "Enables support for native data caching within PHP"
},
"minimum-stability" : "dev",
"prefer-stable" : true
}