-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
44 lines (44 loc) · 966 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
44
{
"name": "philippebeck/php-mvc",
"version": "1.1.0",
"type": "project",
"description": "Instructional Template to start a Web Application with a PHP MVC Architecture",
"keywords": [
"pedagogic",
"template",
"web",
"application",
"php",
"mvc"
],
"homepage": "https://php-mvc.philippebeck.net",
"license": "MIT",
"authors": [
{
"name": "Philippe Beck",
"email": "philippe@philippebeck.net",
"homepage": "https://philippebeck.net",
"role": "Lead Developer"
}
],
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"require": {
"php": "7.3",
"twig/twig": "^3.0.3"
},
"config": {
"platform": {
"php": "7.3"
}
},
"support": {
"email": "admin@philippebeck.net",
"issues": "https://github.com/philippebeck/php-mvc/issues",
"wiki": "https://github.com/philippebeck/php-mvc/wiki",
"source": "https://github.com/philippebeck/php-mvc"
}
}