forked from TECLIB/CFPropertyList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 825 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
27
28
29
30
{
"name": "rodneyrehm/plist",
"description": "Library for reading and writing Apple's CFPropertyList (plist) files in XML as well as binary format.",
"keywords": ["plist"],
"type": "library",
"homepage": "https://github.com/rodneyrehm/CFPropertyList",
"license": "MIT",
"require": {
"php": ">=5.3"
},
"authors": [
{
"name": "Christian Kruse",
"email": "[email protected]"
},
{
"name": "Rodney Rehm",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/rodneyrehm/CFPropertyList/issues",
"source": "https://github.com/rodneyrehm/CFPropertyList"
},
"autoload": {
"psr-0": {
"CFPropertyList":"classes\/"
}
}
}