-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
71 lines (71 loc) · 1.78 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
71
{
"name": "josantonius/url",
"description": "PHP library to access URL information.",
"license": "MIT",
"type": "library",
"keywords": [
"http",
"https",
"path",
"php",
"uri",
"url",
"parse"
],
"authors": [
{
"name": "Josantonius",
"email": "hello@josantonius.dev",
"homepage": "https://josantonius.dev",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/josantonius/php-url/issues",
"source": "https://github.com/josantonius/php-url",
"discussions": "https://github.com/josantonius/php-url/discussions"
},
"require": {
"php": "^8.1"
},
"require-dev": {
"phpmd/phpmd": "^2.6",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.7"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Josantonius\\Url\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Josantonius\\Url\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"coverage": "vendor/bin/phpunit --coverage-clover=coverage.xml",
"fix": [
"vendor/bin/phpcbf src tests"
],
"htmlCoverage": "vendor/bin/phpunit --coverage-html coverage",
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml $(find . -name '*.php');",
"phpmd": "vendor/bin/phpmd src,tests text ./phpmd.xml",
"phpunit": "vendor/bin/phpunit",
"tests": [
"clear",
"@phpmd",
"@phpcs",
"@phpunit"
]
}
}