-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
40 lines (40 loc) · 992 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
31
32
33
34
35
36
37
38
39
40
{
"name": "xivapi/lodestone-parser",
"type": "library",
"keywords": ["ffxiv","php","parser","lodestone"],
"description": "A Lodestone Parser",
"homepage": "https://github.com/xivapi/lodestone-parser",
"license": "MIT",
"authors": [
{
"name": "Josh Freeman",
"email": "[email protected]",
"homepage": "http://xivapi.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2",
"symfony/css-selector": ">=3.2",
"nesbot/carbon": "^2.10",
"symfony/http-client": "^4.3|^5.0",
"ramsey/uuid": "^3.8|^4.0",
"rct567/dom-query": "^0.8.0"
},
"require-dev": {
"phpunit/phpunit": "^8|^9"
},
"autoload": {
"psr-4": {
"Lodestone\\": "src/Lodestone"
}
},
"autoload-dev": {
"psr-4": {
"Lodestone\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}