-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
70 lines (70 loc) · 1.85 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
{
"name": "crwlr/url",
"description": "Swiss Army knife for URLs.",
"keywords": [
"crwlr",
"url",
"urls",
"uri",
"parser",
"parse",
"parsing",
"components",
"idn",
"rfc3986",
"rfc3987",
"psr-7",
"uriinterface"
],
"homepage": "https://www.crwlr.software/packages/url",
"license": "MIT",
"authors": [
{
"name": "Christian Olear",
"homepage": "https://www.otsch.codes",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/crwlrsoft/url/issues",
"source": "https://github.com/crwlrsoft/url",
"docs": "https://www.crwlr.software/packages/url"
},
"require": {
"php" : "^8.0",
"psr/http-message": "^1.0 || ^2.0",
"symfony/polyfill-intl-idn": "^1.11",
"crwlr/query-string": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/phpstan": "^1.8",
"pestphp/pest": "^1.22|^2.0|^3.0",
"pestphp/pest-plugin-parallel": "^1.2"
},
"autoload": {
"psr-4": {
"Crwlr\\Url\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"scripts": {
"test": "pest --parallel",
"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",
"update-suffixes": "@php bin/update-suffixes",
"update-schemes": "@php bin/update-schemes",
"update-default-ports": "@php bin/update-default-ports",
"add-git-hooks": "@php bin/add-git-hooks"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}