-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (42 loc) · 1.26 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
{
"name": "evought/vcard-tools",
"description": "PHP tools for manipulating VCards, including database persistence and html templating. ",
"type": "library",
"keywords": ["vcard", "rfc6350", "contact"],
"homepage": "https://github.com/evought/VCard-Tools",
"authors" : [
{
"name": "Eric Vought",
"email": "[email protected]",
"homepage": "http://radishsaltant.blogspot.com",
"role": "Developer"
}
],
"license": "MIT",
"require-dev": {
"phing/phing": "2.*",
"phpmd/phpmd" : "@stable",
"pdepend/pdepend" : "2.0.4",
"phploc/phploc": "*",
"phpunit/phpunit": "4.3.*",
"phpunit/php-invoker": "~1.1",
"phpunit/dbunit": ">=1.2",
"phpdocumentor/phpdocumentor": "2.*",
"phpunit/phpunit-skeleton-generator": "*",
"robmorgan/phinx": "*"
},
"require": {
"php": ">=5.5.0",
"ramsey/uuid": "~3.5",
"evought/data-uri": "~1.0"
},
"suggest": {
"pecl-weakref": "Permits caching of prepared statements."
},
"autoload": {
"psr-4": {
"EVought\\vCardTools\\": "src/",
"EVought\\vCardTools\\Exceptions\\": "src/Exceptions/"
}
}
}