-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
45 lines (45 loc) · 1.25 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": "webignition/url",
"description": "A PSR-7 UriInterface implementation. A normalizer for applying sixteen lossy and lossless normalizations.",
"keywords": ["url", "uri", "psr-7", "normalise", "normalize", "normaliser", "normalizer"],
"homepage": "https://github.com/webignition/url",
"type": "library",
"license": "MIT",
"abandoned": "webignition/uri",
"authors": [
{
"name": "Jon Cram",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"webignition\\Url\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"webignition\\Url\\Tests\\": "tests"
}
},
"scripts": {
"test": "./vendor/bin/phpunit --colors=always",
"cs": "./vendor/bin/phpcs src tests --colors --standard=PSR2",
"ci": [
"@composer cs",
"@composer test"
]
},
"require": {
"php": ">=7.2",
"psr/http-message": "^1",
"mso/idna-convert": "^1",
"xrstf/ip-utils": "v1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "3.*",
"mockery/mockery": "^1",
"php-mock/php-mock-mockery": "^1"
}
}