-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.22 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.22 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
{
"name": "nicolasrapetti/cs-framework",
"version": "1.0.0",
"description": "A lightweight, secure PHP micro-framework built for small to medium projects. No bloat, no magic — just clean MVC architecture with the essentials you actually need.",
"keywords": ["php", "framework", "mvc", "minimalist"],
"license": "MIT",
"authors": [
{
"name": "Nicolás Rapetti",
"email": "nicolas.rapetti@gmail.com",
"homepage": "https://github.com/nicolasrapetti"
}
],
"autoload": {
"psr-4": {
"App\\": "src/app/",
"Core\\": "src/core/"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"start": "php -S localhost:8000 -t src/public/",
"seed": "php src/database/seed.php",
"migrate" : "php src/database/migrate.php",
"migrate:fresh" : "php src/database/migrate.php -- --fresh"
},
"bin": ["cs"],
"config": {
"process-timeout": 0
},
"require": {
"illuminate/database": "^12.52",
"vlucas/phpdotenv": "^5.6",
"illuminate/pagination": "^12.52",
"phpmailer/phpmailer": "^7.0",
"firebase/php-jwt": "^7.0"
}
}