blob: ba48d16edcbaf8e06e31eef671c7a5dba890fa09 (
plain)
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
|
{
"name": "marienfressinaud/lib_opml",
"description": "A library to read and write OPML in PHP.",
"license": "MIT",
"authors": [
{
"name": "Marien Fressinaud",
"email": "dev@marienfressinaud.fr"
}
],
"require": {
"php": ">=7.2.0",
"ext-dom": "*"
},
"config": {
"platform": {
"php": "7.2.0"
}
},
"support": {
"issues": "https://framagit.org/marienfressinaud/lib_opml/-/issues"
},
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"marienfressinaud\\": "src/"
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^8"
}
}
|