This repository has been archived by the owner on Jan 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
66 lines (66 loc) · 1.68 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
{
"name": "helio/panel",
"description": "Prototype of the Helio user Panel",
"homepage": "https://panel.idling.host",
"license": "MIT",
"authors": [
{
"name": "Christoph Buchli",
"email": "[email protected]",
"homepage": "https://helio.exchange"
}
],
"autoload": {
"psr-4": {
"Helio\\Panel\\": "src/Classes"
}
},
"require": {
"php": "7.2.*",
"ext-json": "*",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"monolog/monolog": "^1.17",
"doctrine/orm": "^2.6.0",
"guzzlehttp/guzzle": "^6.2",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"ergy/slim-annotations-router": "^1.0",
"tuupola/base62": "^0.10.0",
"tuupola/slim-basic-auth": "^3.1",
"tuupola/slim-jwt-auth": "^3.0",
"tuupola/cors-middleware": "^0.9",
"google/auth": "^1.4",
"adbario/php-dot-notation": "^2.2",
"ocramius/proxy-manager": "^2.2",
"symfony/yaml": "^4.2",
"zircote/swagger-php": "^3.0",
"elasticsearch/elasticsearch": "^6.7",
"adhocore/cron-expr": "^1.1",
"ramsey/uuid": "^3.8",
"swiftmailer/swiftmailer": "^6.0",
"intercom/intercom-php": "^4.2",
"php-http/guzzle6-adapter": "^2.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "*",
"webfactory/doctrine-orm-test-infrastructure": "^1.5",
"friendsofphp/php-cs-fixer": "^2.15",
"akrabat/proxy-detection-middleware": "^0.4.0"
},
"autoload-dev": {
"psr-4": {
"Helio\\Test\\": "tests/"
}
},
"config": {
"process-timeout": 0
},
"scripts": {
"start": "php -S localhost:8080 -t www",
"test": "phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true
}