-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.92 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "quagga/quagga",
"cms-version": "1.0.0",
"description": "Yet another PHP CMS by Puleeno Nguyen",
"keywords": [
"microframework",
"rest",
"router",
"psr7"
],
"minimum-stability": "dev",
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"license": "MIT",
"authors": [
{
"name": "Puleeno Nguyen",
"email": "[email protected]",
"homepage": "https://quagga.com"
},
{
"name": "Josh Lockhart",
"email": "[email protected]",
"homepage": "http://www.joshlockhart.com/"
},
{
"name": "Pierre Berube",
"email": "[email protected]",
"homepage": "http://www.lgse.com/"
}
],
"require": {
"davedevelopment/phpmig": "^1.7",
"laravel/serializable-closure": "^1.3",
"polarising/bcrypt": "^1.0",
"quagga/framework": "dev-master",
"quagga/twig-view": "^3.3",
"ramsey/uuid": "^4.2.3",
"spatie/schema-org": "^3.9",
"tebazil/db-seeder": "^1.0",
"twig/twig": "^3.10",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^1.0.2",
"phpspec/prophecy-phpunit": "^2.2",
"phpstan/extension-installer": "^1.4.2",
"phpunit/phpunit": "^9.6.17",
"squizlabs/php_codesniffer": "^3.10"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"./app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"start": "php -S localhost:8080 -t public",
"test": "phpunit"
}
}