-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
59 lines (59 loc) · 1.58 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": "crwlr/query-string",
"description": "A library for convenient handling of query strings used in HTTP requests.",
"type": "library",
"keywords": [
"crwlr",
"query",
"string",
"query string",
"query-string",
"http",
"request"
],
"homepage": "https://www.crwlr.software/packages/query-string",
"license": "MIT",
"autoload": {
"psr-4": {
"Crwlr\\QueryString\\": "src/"
}
},
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/query-string/issues",
"source": "https://github.com/crwlrsoft/query-string",
"docs": "https://www.crwlr.software/packages/query-string"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/otsch"
}
],
"require": {
"php" : "^8.0"
},
"require-dev": {
"pestphp/pest": "^1.21|^2.0|^3.0",
"friendsofphp/php-cs-fixer": "^3.8",
"phpstan/phpstan": "^1.7"
},
"scripts": {
"test": "@php vendor/bin/pest",
"stan": "@php vendor/bin/phpstan analyse -c phpstan.neon",
"cs": "@php vendor/bin/php-cs-fixer fix -v --dry-run",
"cs-fix": "@php vendor/bin/php-cs-fixer fix -v",
"add-git-hooks": "@php bin/add-git-hooks"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}