forked from softonic/laravel-intelligent-scraper
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
81 lines (81 loc) · 1.94 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
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "joskfg/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/joskfg/laravel-intelligent-scraper",
"support": {
"issues": "https://github.com/joskfg/laravel-intelligent-scraper/issues"
},
"require": {
"php": ">= 8.3",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"illuminate/database": "^10.0",
"illuminate/events": "^10.0",
"ext-dom": "*",
"ext-json": "*",
"symfony/browser-kit": "^6.4",
"symfony/http-client": "^7.1"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^3.8",
"laravel/legacy-factories": "^1.1",
"squizlabs/php_codesniffer": "^3",
"orchestra/testbench": "^8.27.2",
"rector/rector": "^1.0"
},
"autoload": {
"files": [
"src/Scraper/helpers.php"
],
"classmap": [
"src/database/seeds",
"src/database/factories"
],
"psr-4": {
"Joskfg\\LaravelIntelligentScraper\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"all-tests": [
"@checkstyle",
"phpunit --coverage-text"
],
"test": [
"@checkstyle",
"phpunit --coverage-text --testsuite Unit"
],
"checkstyle": [
"php-cs-fixer fix -v --diff --dry-run --allow-risky=yes",
"rector --dry-run"
],
"fix-checkstyle": [
"@php-cs-fixer",
"@rector"
],
"php-cs-fixer": "php-cs-fixer fix -v --diff --allow-risky=yes",
"rector": "rector"
},
"extra": {
"laravel": {
"providers": [
"Joskfg\\LaravelIntelligentScraper\\ScraperProvider"
]
}
}
}