-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
38 lines (38 loc) · 1.27 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
{
"name": "troelskn/konstrukt",
"type": "library",
"description": "Konstrukt is a minimalistic framework which provides a foundation on which to build rather than a boxed solution to all problems. It focuses on the controller layer, and tries to encourage the developer to deal directly with the HTTP protocol instead of abstracting it away. Konstrukt uses a hierarchical controller pattern, which provides a greater level of flexibility than the popular routed front controller frameworks.",
"keywords": [
"image", "exif"
],
"homepage": "http://http://konstrukt.dk/",
"authors": [
{
"name": "Troels Knak-Nielsen",
"email": "[email protected]",
"homepage": "http://troelskn.com/",
"role": "Developer"
}
],
"license": "GPL-2.0+",
"require": {
"php": ">=5.0.0"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/troelskn/bucket.git"
}
],
"minimum-stability": "dev",
"require-dev" : {
"simpletest/simpletest": "1.1.*",
"squizlabs/php_codesniffer": "2.*",
"troelskn/bucket": "*"
},
"autoload": {
"files": [
"lib/konstrukt/konstrukt.inc.php"
]
}
}