-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
67 lines (66 loc) · 1.54 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "zeptech/conductor",
"type": "library",
"description": "Webapp framework",
"keywords": [ "framework", "webapp" ],
"license": "BSD",
"authors": [
{
"name": "Philip Graham",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"zpt\\cdt\\": "src/"
}
},
"bin": [
"bin/cdt-compile",
"bin/cdt-dbup",
"bin/cdt-deploy",
"bin/cdt-export",
"bin/cdt-stage",
"bin/cdt-init",
"bin/cdt-update"
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4",
"leafo/lessphp": "0.3.9",
"mrclay/minify": "dev-master",
"psr/log": "1.0.0",
"monolog/monolog": "1.7.0",
"symfony/yaml": "2.4.4",
"zeptech/database": "dev-master",
"zeptech/utility": "dev-master",
"zeptech/annotations": "1.0.*",
"zeptech/oobo": "dev-master",
"zeptech/clarinet": "dev-master",
"zeptech/php-rest-server": "0.1.*@dev",
"zeptech/dbup": "dev-master",
"zeptech/fun-box": "dev-master"
},
"require-dev": {
"mockery/mockery": "dev-master@dev",
"hamcrest/hamcrest": "1.1.0"
},
"repositories": [
{
"type": "package",
"package": {
"name": "hamcrest/hamcrest",
"version": "1.1.0",
"dist": {
"type": "zip",
"url": "https://hamcrest.googlecode.com/files/hamcrest-php-1.1.0.zip"
},
"include-path": ["Hamcrest-1.1.0/"],
"autoload": {
"psr-0": { "Hamcrest_": "Hamcrest-1.1.0/" },
"files": ["Hamcrest-1.1.0/Hamcrest/Hamcrest.php"]
}
}
}
]
}