-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 878 Bytes
/
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
{
"name": "fnogcps/shortly",
"description": "✂️ URL shortener built with Slim",
"autoload": {
"psr-4": {
"fnogcps\\Shortly\\": "app/"
}
},
"homepage": "https://github.com/fnogcps/shortly",
"license": "MIT",
"authors": [
{
"name": "Felipe Nogueira",
"email": "contato.fnog@gmail.com"
}
],
"require": {
"slim/slim": "4.*",
"slim/http": "^1.3",
"slim/psr7": "^1.6",
"slim/php-view": "^3.2",
"vlucas/phpdotenv": "^5.5",
"robmorgan/phinx": "^0.13.4"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.7"
},
"scripts": {
"start": [
"php -S 0.0.0.0:8000 -t public"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}