-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.06 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
{
"name": "geggleto/skelly",
"type": "library",
"description": "Skelly is a PHP Skeleton Project aimed at getting an MVP up and running quickly",
"keywords": [
"framework",
"bootstrap"
],
"license": "MIT",
"authors": [
{
"name": "Glenn Eggleton",
"email": "[email protected]",
"homepage": "https://glenneggleton.com"
}
],
"require": {
"slim/slim": "^3.8",
"slim/twig-view": "^2.3",
"php-di/slim-bridge": "^1.0",
"doctrine/orm": "^2.5",
"vlucas/phpdotenv": "^2.4",
"ramsey/uuid-doctrine": "^1.4",
"mailgun/mailgun-php": "^2.3",
"php-http/curl-client": "^1.7",
"guzzlehttp/psr7": "^1.4",
"paragonie/random_compat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^5.6"
},
"scripts": {
"gulp": "cd public/assets && npm install && gulp",
"post-install-cmd": "@gulp",
"db": "vendor/bin/doctrine orm:schema-tool:update --force"
},
"autoload": {
"psr-4": {
"MyApp\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MyApp\\Tests\\": "tests"
}
}
}