-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 932 Bytes
/
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
{
"name": "studoo/edu-framework-skeleton",
"type": "project",
"description": "Edu Framework Skeleton",
"minimum-stability": "dev",
"license": "MIT",
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"studoo/edu-framework": "2.x-dev"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"": "app/"
}
},
"authors": [
{
"name": "Benoit Foujols",
"email": "Benoit.Foujols@ac-creteil.fr"
},
{
"name": "Studoo Community",
"homepage": "https://github.com/orgs/studoo-app/people"
}
],
"scripts": {
"edu:start": [
"Composer\\Config::disableProcessTimeout",
"php -S localhost:8042 -t public"
],
"edu:init": [
"php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
},
"scripts-descriptions": {
"edu:init": "Create env file",
"edu:start": "Start local server"
}
}