-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 899 Bytes
/
composer.json
File metadata and controls
38 lines (37 loc) · 899 Bytes
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
{
"name": "VaHI API",
"description": "This thing needs a tagline",
"keywords": ["php", "slim"],
"homepage": "http://github.com/vahi/api",
"license": "MIT",
"authors": [
{
"name": "Joost De Cock",
"email": "joost@decock.org",
"homepage": "http://github.com/joostdecock"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"tuupola/slim-jwt-auth": "^2.3",
"tuupola/base62": "^0.8.0",
"phpoffice/phpspreadsheet": "^1.4"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
},
"autoload-dev": {
"psr-4": {
"Vahi\\": "src/"
}
},
"config": {
"process-timeout" : 0
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}