-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
65 lines (65 loc) · 1.77 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
{
"name": "kigkonsult/phpvcardmgr",
"type": "library",
"description": "The PHP class package managing Vcard/Xcard/Jcard information",
"keywords": [
"rfc6350",
"rfc6351",
"rfc7095",
"rfc2426",
"vcard",
"vcard4",
"vcard3",
"xcard",
"xml",
"jcard",
"json",
"parse",
"format",
"write"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Kjell-Inge Gustafsson",
"email": "[email protected]"
}
],
"funding": [
{
"type": "other",
"url": "https://paypal.me/kigkonsult"
}
],
"support": {
"issues": "https://github.com/iCalcreator/phpvcardmgr/issues"
},
"autoload": {
"files": ["autoload.php"],
"psr-4": { "Kigkonsult\\PhpVcardMgr\\": ["src/"] }
},
"require": {
"php": ">=7.1",
"ext-ctype": "*",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-xmlreader": "*",
"ext-xmlwriter": "*"
},
"require-dev": {
"degraciamathieu/php-arguments-detector": ">=0.5.0",
"ext-iconv": "*",
"ext-xdebug": "*",
"fakerphp/faker": "dev-main",
"kigkonsult/fakerlocreltypes": "dev-main",
"phpcompatibility/php-compatibility": ">=9.3.5",
"phpstan/phpstan": ">=0.9.3",
"phpunit/phpunit": ">=6.5.13",
"squizlabs/php_codesniffer": ">=3.5.5"
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}