-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.71 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"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/moodlehq/CFPropertyList",
"license": "MIT",
"require": {
"php": "^7.4 || ^8.0",
"ext-dom": "*",
"ext-libxml": "*"
},
"authors": [
{
"name": "Andrew Lyons",
"email": "andrew.lyons@moodle.com",
"role": "developer"
},
{
"name": "Andrew Gosali",
"email": "andrew.gosali@moodle.com",
"role": "developer"
},
{
"name": "Christian Kruse",
"email": "cjk@wwwtech.de",
"role": "developer"
},
{
"name": "Rodney Rehm",
"email": "mail+github@rodneyrehm.de",
"role": "developer"
},
{
"name": "Thierry Bugier",
"email": "tbugier@teclib.com",
"role": "developer"
}
],
"support": {
"issues": "https://github.com/moodlehq/CFPropertyList/issues",
"source": "https://github.com/moodlehq/CFPropertyList",
"docs": "https://moodlehq.github.io/CFPropertyList/howtos/",
"rss": "https://moodlehq.github.io/CFPropertyList/feed.xml"
},
"autoload": {
"psr-4": {
"CFPropertyList\\": "src/CFPropertyList/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.6.22",
"squizlabs/php_codesniffer": "^3.2"
},
"scripts": {
"test": [
"vendor/bin/phpunit"
]
}
}