-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (35 loc) · 935 Bytes
/
composer.json
File metadata and controls
37 lines (35 loc) · 935 Bytes
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
{
"name" : "henderjon/base-project",
"type" : "library",
"description" : "a typical starting point for a new PHP project via composer",
"homepage" : "http://github.com/henderjon/base-project",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Jon Henderson",
"role" : "Developer",
"homepage" : "http://github.com/henderjon"
}
],
"support" : {
"irc" : "irc://irc.freenode.org/henderjon"
},
"require": {
"php" : ">=5.5.0",
"chevron/chevron" : "~7.0",
"henderjon/drop" : "~1.0",
"henderjon/redis" : "~2.0",
"henderjon/weights_and_measures" : "~3.0",
"henderjon/is_cli" :"~1.0.1",
"corpus/autoloader" : "~1.0",
"mailjet/mailjet-apiv3-php" : "~1.1"
},
"require-dev": {
"phpunit/phpunit" : "~4.0"
},
"autoload": {
"psr-4": {
"": "src/"
}
}
}