-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.25 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": "previewtechs/slim-php-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"keywords": [
"microframework",
"rest",
"router",
"psr7",
"skeleton",
"PreviewTechnologies",
"previewtechs"
],
"homepage": "http://github.com/PreviewTechnologies",
"license": "MIT",
"authors": [
{
"name": "Preview Technologies Limited",
"email": "[email protected]",
"homepage": "https://www.previewtechs.com/"
}
],
"require": {
"slim/slim": "^3.0",
"slim/php-view": "^2.2",
"monolog/monolog": "^1.24",
"twig/twig": "^2.11",
"slim/twig-view": "^2.5",
"slim/flash": "^0.4.0",
"illuminate/events": "^5.8",
"illuminate/database": "^5.8",
"vlucas/phpdotenv": "v3.4.0"
},
"autoload": {
"psr-4": {
"Previewtechs\\Framework\\PHP\\SlimSkeleton\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Previewtechs\\Framework\\PHP\\SlimSkeleton\\Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"test": "phpunit"
}
}