-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
65 lines (65 loc) · 1.65 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
{
"name": "studoo/edu-framework",
"description": "Light Education PHP framework",
"keywords": ["education", "framework", "mvc", "php"],
"minimum-stability": "dev",
"license": "MIT",
"authors": [
{
"name": "Benoit Foujols",
"email": "Benoit.Foujols@ac-creteil.fr"
},
{
"name": "Julien Pechberty",
"email": "Julien.Pechberty@ac-creteil.fr"
},
{
"name": "Studoo Community",
"homepage": "https://github.com/orgs/studoo-app/people"
}
],
"require": {
"php": ">=8.2",
"vlucas/phpdotenv": "^v5.5",
"twig/twig": "^3.7",
"nikic/fast-route": "^1.3",
"ext-pdo": "*",
"symfony/yaml": "6.3.*",
"symfony/console": "6.3.*",
"nette/php-generator": "^4.1@dev",
"zircote/swagger-php": "^4.0@dev",
"symfony/filesystem": "7.2.x-dev"
}
,
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Studoo\\EduFramework\\Core\\": "src/EduFramework/Core/",
"Studoo\\EduFramework\\Scripts\\": "src/EduFramework/Scripts/",
"Studoo\\EduFramework\\Commands\\": "src/EduFramework/Commands/",
"": "app/"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/studoo-app/edu-framework"
}
],
"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"
}
}