-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.64 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.64 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
{
"name": "TPCISIIE/ODCVL",
"description": "Application de gestion de stock de matériel sportif",
"keywords": ["slim", "eloquent", "twig", "framework"],
"homepage": "https://github.com/TPCISIIE/ODCVL",
"license": "MIT",
"authors": [
{
"name": "Alexis Wurth",
"email": "alexis.wurth57@gmail.com",
"homepage": "https://github.com/awurth"
},
{
"name": "Kamel Remaki",
"email": "remakikamel@gmail.com",
"homepage": "https://github.com/Kameldev"
},
{
"name": "Zakaria El Ouarchi",
"email": "realandraja@gmail.com",
"homepage": "https://github.com/realandraja"
}
],
"autoload": {
"psr-4": {
"App\\": "src/App"
}
},
"require": {
"slim/slim": "^3.7",
"illuminate/database": "^5.3",
"respect/validation": "^1.1",
"cartalyst/sentinel": "^2.0",
"illuminate/events": "^5.3",
"symfony/http-foundation": "^3.2",
"incenteev/composer-parameter-handler": "^2.1",
"firebase/php-jwt": "^4.0",
"awurth/slim-validation": "^2.0",
"symfony/console": "^3.2"
},
"scripts": {
"start": "php -S 0.0.0.0:8080 -t public public/index.php",
"post-install-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
],
"post-update-cmd": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters"
]
},
"extra": {
"incenteev-parameters": {
"file": "bootstrap/parameters.yml"
}
}
}