-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 986 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "chrismcmacken/phptools",
"type": "library",
"description": "Small utilities that assist in developing applications",
"keywords": [
"crypto",
"db",
"dependency",
"injection",
"container",
"dump",
"friend",
"logger",
"phptools",
"session",
"session2",
"tokenizer",
"webrequest"
],
"homepage": "http://fidian.com/",
"license": "MIT",
"authors": [
{
"name": "Chris McMacken",
"email": "[email protected]"
},
{
"name": "Tyler Akins",
"email": "[email protected]",
"homepage": "http://rumkin.com/"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"classmap": [
"cache/",
"crypto/",
"db/",
"dependencyinjectioncontainer/",
"dump/",
"friend/",
"logger/",
"loggingsoapclient/",
"phptoolstestbase/",
"renamer/",
"session2/",
"skeleton/",
"slimroute/",
"tokenizer/",
"ultralite/",
"variablestream/",
"webrequest/",
"webresponse/",
"zipbuilder/"
]
}
}