-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 858 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 858 Bytes
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
{
"name": "ycrao/tinyme",
"description": "A tiny PHP framework based on FlightPHP and Medoo.",
"homepage": "https://github.com/ycrao/tinyme",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "raoyc",
"email": "raoyc2009@gmail.com",
"homepage": "https://raoyc.com/"
}
],
"require": {
"php": ">=7.4",
"flightphp/core": "^3.0",
"catfan/medoo": "^2.1",
"vlucas/phpdotenv": "^5.6",
"monolog/monolog": "^3.0",
"flightphp/cache": "^1.1",
"ext-json": "*"
},
"config": {
"preferred-install": "dist",
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"app\\": "app/"
}
},
"scripts": {
"start": "php -S 127.0.0.1:9999 -t public",
"post-create-project-cmd": [
"@php -r \"copy('.env.example', '.env');\""
]
}
}