generated from crwlrsoft/package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
45 lines (45 loc) · 1.18 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
{
"name": "crwlr/utils",
"description": "Utilities that are needed in multiple crawler packages.",
"keywords": [
"crwlr", "utils", "json"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/utils/issues",
"source": "https://github.com/crwlrsoft/utils"
},
"autoload": {
"psr-4": {
"Crwlr\\Utils\\": "src/"
}
},
"require": {
"php": "^8.0"
},
"require-dev": {
"pestphp/pest": "^1.22|^2.0|^3.0",
"phpstan/phpstan": "^1.8",
"friendsofphp/php-cs-fixer": "^3.57"
},
"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
}
}
}