generated from crwlrsoft/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.45 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
{
"name": "crwlr/laravel-crawler",
"description": "Laravel adapter for the crwlr/crawler package.",
"keywords": [
"crwlr",
"laravel",
"crawler",
"adapter",
"scraping",
"crawling"
],
"homepage": "https://www.crwlr.software/packages/laravel-crawler",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/laravel-crawler/issues",
"source": "https://github.com/crwlrsoft/laravel-crawler",
"docs": "https://www.crwlr.software/packages/laravel-crawler"
},
"autoload": {
"psr-4": {
"Crwlr\\LaravelCrawler\\": "src/"
}
},
"require": {
"php": "^8.1",
"crwlr/crawler": "^1.0"
},
"require-dev": {
"pestphp/pest": "^2.19",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.30"
},
"scripts": {
"test": "@php vendor/bin/pest",
"cs": "@php vendor/bin/php-cs-fixer fix -v --dry-run",
"cs-fix": "@php vendor/bin/php-cs-fixer fix -v",
"stan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"add-git-hooks": "@php bin/add-git-hooks"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}