-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (51 loc) · 1.28 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
{
"name": "mensbeam/lax",
"type": "library",
"description": "A lax newsfeed parser",
"keywords": ["rss","atom","jsonfeed", "newsfeed", "feed", "parser"],
"license": "MIT",
"authors": [
{
"name": "J. King",
"email": "[email protected]",
"homepage": "https://jkingweb.ca/"
}
],
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-dom": "*",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"mensbeam/mimesniff": "^0.2.0",
"mensbeam/html-parser": "^1.3.0",
"symfony/polyfill-intl-idn": "1.*",
"ralouphie/mimey": "^2.1"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.3"
},
"config": {
"platform": {
"php": "7.1.33"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"post-install-cmd": ["@composer bin all install"],
"post-update-cmd": ["@composer bin all update"]
},
"autoload": {
"psr-4": {
"MensBeam\\Lax\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"MensBeam\\Lax\\TestCase\\": "tests/cases/"
}
}
}