-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
69 lines (69 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "reliqarts/laravel-scavenger",
"description": "The most integrated web scraper package for Laravel.",
"keywords": [
"scraper",
"package",
"generation",
"laravel",
"scavenger",
"laravel5",
"seek",
"content",
"data",
"web"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "reliq",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"illuminate/support": "6 - 10",
"monolog/monolog": "1.24 - 3",
"fabpot/goutte": "^4.0",
"ext-iconv": "*",
"ext-json": "*",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"orchestra/testbench": "4 - 8",
"phpro/grumphp": "^1.0",
"symplify/easy-coding-standard": ">=8.2",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"ReliqArts\\Scavenger\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReliqArts\\Scavenger\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpro/grumphp": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --verbose --colors=auto --coverage-clover=coverage.xml",
"test:unit": "phpunit --testsuite=Unit --verbose --coverage-clover=coverage.xml",
"test:integration": "phpunit --testsuite=Integration --verbose"
},
"extra": {
"laravel": {
"providers": ["ReliqArts\\Scavenger\\ServiceProvider"]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}