-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
51 lines (51 loc) · 1.46 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
{
"name": "rodneyrehm/plist",
"description": "Library for reading and writing Apple's CFPropertyList (plist) files in XML as well as binary format.",
"keywords": ["Core Foundation", "CFPropertyList", "plist", "apple", "xml", "binary"],
"type": "library",
"homepage": "https://github.com/TECLIB/CFPropertyList",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-libxml": "*"
},
"authors": [
{
"name": "Christian Kruse",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Rodney Rehm",
"email": "[email protected]",
"role": "developer"
},
{
"name": "Thierry Bugier",
"email": "[email protected]",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/TECLIB/CFPropertyList/issues",
"source": "https://github.com/TECLIB/CFPropertyList",
"email": "[email protected]",
"docs": "http://teclib.github.io/CFPropertyList/howtos/",
"rss": "https://teclib.github.io/CFPropertyList/feed.xml"
},
"autoload": {
"psr-4": {
"CFPropertyList\\": "src/CFPropertyList/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.2"
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}