-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 955 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
45
{
"name": "tbl0605/phpyam",
"type": "library",
"description": "Really simple, yet easily extendable, MVC framework for PHP developers that helps you quickly write simple yet powerful web applications and APIs.",
"keywords": [
"framework",
"micro",
"api",
"router"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Thierry Blind",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/tbl0605/PHPYAM/issues",
"source": "https://github.com/tbl0605/PHPYAM"
},
"require": {
"php": ">=5.4.0"
},
"require-dev": {
"apache/log4php": "^2.3.0"
},
"repositories": {
"apache/log4php": {
"type": "vcs",
"url": "https://github.com/tbl0605/logging-log4php"
}
},
"autoload": {
"psr-4": {
"PHPYAM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPYAM\\demo\\application\\": "demo/application-autoloader/"
}
}
}