This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "sadegh-pm/slim-skeleton",
"type": "project",
"license": "MIT",
"description": "Laravel like slim skeleton",
"authors": [
{
"name": "SadeghPM",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"cache/filesystem-adapter": "^1.0",
"cache/namespaced-cache": "^1.0",
"cache/redis-adapter": "^1.0",
"hassankhan/config": "^1.0",
"illuminate/database": "^5.5",
"illuminate/events": "^5.5",
"illuminate/pagination": "^5.5",
"illuminate/translation": "^5.5",
"illuminate/validation": "^5.5",
"kitchenu/slim-debugbar": "^1.1",
"league/flysystem": "^1.0",
"mnapoli/silly": "^1.7",
"monolog/monolog": "^1.23",
"psy/psysh": "@stable",
"slim/csrf": "^0.8.2",
"slim/slim": "^3.10",
"slim/twig-view": "^2.4",
"symfony/yaml": "^3.4"
},
"require-dev": {
"dopesong/slim-whoops": "^2.3",
"phpunit/phpunit": "~6.5",
"symfony/var-dumper": "^3.4"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8000 -t public",
"test": "phpunit",
"post-root-package-install": [
"@php -r \"file_exists('env.yaml') || copy('env.example.yaml', 'env.yaml');\""
]
},
"config": {
"process-timeout": 0,
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}