This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
59 lines (59 loc) · 1.69 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
{
"name": "softonic/laravel-intelligent-scraper",
"type": "library",
"description" : "Service to scrape a web page easily without knowing their HTML structure.",
"keywords": ["laravel", "scraper", "intelligent", "automatic"],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/laravel-intelligent-scraper",
"support": {
"issues": "https://github.com/softonic/laravel-intelligent-scraper/issues"
},
"require": {
"php": ">=7.1",
"fabpot/goutte": "^3.2",
"psr/log": "^1.0",
"illuminate/database": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"illuminate/events": "^5.8 || ^6.0 || ^7.0 || ^8.0",
"ext-dom": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^2.4",
"squizlabs/php_codesniffer": "^3",
"phpstan/phpstan": "^0.10.1",
"orchestra/testbench": "^3.8",
"orchestra/database": "^3.8"
},
"autoload": {
"files": [
"src/Scraper/helpers.php"
],
"classmap": [
"src/database/seeds",
"src/database/factories"
],
"psr-4": {
"Softonic\\LaravelIntelligentScraper\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpstan": "phpstan analyse -l 7 src --no-interaction --no-progress",
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"fix-cs": "php-cs-fixer fix -v --diff --allow-risky=yes;"
},
"extra": {
"laravel": {
"providers": [
"Softonic\\LaravelIntelligentScraper\\ScraperProvider"
]
}
}
}