-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
42 lines (42 loc) · 1.06 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
{
"name": "spekulatius/spatie-crawler-toolkit-for-laravel",
"description": "Handy classes for Spatie's crawler when using it with Laravel.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Peter Thaleikis",
"homepage": "https://releasecandidate.dev"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.2|^8.0",
"laravel/framework": "^8.0|^9.0",
"spatie/crawler": "^7.0"
},
"require-dev": {
"symfony/thanks": "^1.2"
},
"autoload": {
"psr-4": {
"Spekulatius\\SpatieCrawlerToolkit\\": "src/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"extra": {
"laravel": {
"providers": [
"Spekulatius\\SpatieCrawlerToolkit\\ToolkitServiceProvider"
]
}
}
}