forked from auroris/City-of-Heroes-Account-Portal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.05 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
{
"name": "ouroboros/account-portal",
"description": "An account portal for the Ouroboros Project.",
"keywords": ["city of heroes", "ouroboros", "issue 24", "issue 25"],
"homepage": "https://github.com/auroris/City-of-Heroes-Account-Portal",
"license": "MIT",
"authors": [
{
"name": "auroris"
}
],
"require": {
"php": ">=5.6",
"monolog/monolog": "^1.17",
"phpmailer/phpmailer": "^6.0",
"phpmyadmin/sql-parser": "^5.0",
"slim/csrf": "^0.8.3",
"slim/slim": "^3.1",
"slim/twig-view": "^2.5",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"phpunit/phpunit": ">=5.0"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"autoload": {
"psr-4": {
"App\\": "src/App"
}
},
"config": {
"process-timeout": 0,
"sort-packages": true
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}