-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.18 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
{
"name": "app-arena/php-sdk",
"type": "library",
"description": "App-Arena.com App-Manager PHP SDK",
"keywords": [
"app-arena",
"app-manager",
"api",
"php",
"sdk"
],
"homepage": "http://docs.app-arena.com",
"license": "MIT",
"support": {
"issues": "http://app-arena.readthedocs.org/en/latest/"
},
"authors": [
{
"name": "Sebastian Buckpesch",
"email": "[email protected]",
"homepage": "http://www.app-arena.com"
}
],
"minimum-stability": "dev",
"require": {
"ext-curl": "*",
"ext-json": "*",
"ext-gd": "*",
"leafo/scssphp": "^v0.8.4",
"mobiledetect/mobiledetectlib": "^2.8.34",
"mustache/mustache": "v2.13.0",
"oyejorge/less.php": "^1.7.0",
"php": ">=7.1",
"symfony/cache": "^3.4.36",
"thadafinser/user-agent-parser":"^v2.0.0",
"whichbrowser/parser": "^2.0.37"
},
"require-dev": {
"codeception/codeception": "^2.2"
},
"scripts": {
"test": "./vendor/bin/codecept run --no-interaction"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true
},
"prefer-stable": true,
"autoload": {
"psr-0": {
"AppArena\\": "src/"
}
}
}