-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.12 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
{
"name": "jazzee/foundation",
"type": "library",
"description": "Foundation framework for Jazzee project",
"keywords": ["framework"],
"homepage": "http://jazzee.org",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jon Johnson",
"email": "jon.johnson@ucsf.edu",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0",
"ezyang/htmlpurifier": "4.*",
"doctrine/common": "2.3.*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"phpmd/phpmd": "1.5.*",
"squizlabs/php_codesniffer": "*",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"ext-apc": "Caching will significantly improve performance.",
"ext-curl": "PHP Curl",
"ext-json": "PHP JSON",
"ext-imagick": "PHP Image Magick",
"ext-uuid": "PHP UUID",
"ext-mbstring": "PHP MBString",
"ext-ldap": "PHP LDAP",
"ext-xml": "PHP XML",
"ext-dom": "PHP DOM",
"ext-clamav": "Clamav Extension, http://php-clamav.sourceforge.net/"
},
"autoload": {
"psr-0": {
"Foundation": "src/"
},
"classmap": ["lib/lightvc", "lib/phpass", "lib/phpmailer"]
}
}