-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
43 lines (43 loc) · 1.11 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
{
"name": "tomaj/meta-scraper",
"description": "Page meta scraper library",
"license": "MIT",
"keywords": ["page", "sraper", "meta"],
"authors": [
{
"name": "Tomas Majer",
"email": "[email protected]",
"homepage": "http://www.tomaj.sk/"
}
],
"support": {
"issues": "https://github.com/tomaj/meta-scraper/issues",
"source": "https://github.com/tomaj/meta-scraper"
},
"require": {
"php": ">= 7.1.0",
"guzzlehttp/guzzle": "^6.0 | ^7.0"
},
"suggest": {
"ext-dom": "Required for Tomaj\\Scraper\\Parser\\OgDomParser",
"ext-libxml": "Required for Tomaj\\Scraper\\Parser\\OgDomParser"
},
"require-dev": {
"phpunit/phpunit": "^8 || ^9",
"squizlabs/php_codesniffer": "^3.5",
"codeclimate/php-test-reporter": "0.4.4"
},
"autoload": {
"psr-4": {
"Tomaj\\Scraper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tomaj\\Scraper\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
}
}