-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.5 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.5 KB
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
{
"name": "turboframe/lambostarter",
"description": "TurboFrame: The Fast PHP Framework for Students & Modern Developers. Built for speed, PWA ready, and easy to use.",
"type": "project",
"keywords": [
"php",
"framework",
"turboframe",
"lambo",
"fast php",
"student-friendly",
"pwa",
"mvc"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Rizko Imsar",
"homepage": "https://turboframe.my.id"
}
],
"require": {
"php": "^8.1",
"vlucas/phpdotenv": "^5.5",
"ext-pdo": "*",
"ext-mbstring": "*"
},
"suggest": {
"spiral/roadrunner-http": "For high-performance reactive PHP serving",
"nyholm/psr7": "Required for RoadRunner PSR-7 support",
"ext-sockets": "Required for RoadRunner connectivity"
},
"require-dev": {
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"TurboFrame\\": "src/",
"App\\": "application/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"serve": "php lambo serve",
"nitrous": "php lambo nitrous"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}