forked from jeroendesloovere/vcard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
26 lines (26 loc) · 849 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
{
"name": "jeroendesloovere/vcard",
"type": "library",
"description": "This VCard PHP class can generate a vCard with some data. When using an iOS device it will export as a .ics file because iOS devices don't support the default .vcf files.",
"keywords": ["vcard", "generator", ".vcf", "php"],
"homepage": "https://github.com/jeroendesloovere/vcard",
"license": "MIT",
"authors": [
{
"name": "Jeroen Desloovere",
"email": "[email protected]",
"homepage": "http://jeroendesloovere.be",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.3",
"behat/transliterator": "~1.0"
},
"require-dev": {
"phpunit/phpunit": "4.6.*"
},
"autoload": {
"psr-4": { "JeroenDesloovere\\VCard\\": "src/" }
}
}