-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
42 lines (42 loc) · 1.08 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
{
"name": "webignition/absolute-url-deriver",
"description": "Derives an absolute URL from relative and source URLs",
"keywords": ["url", "absolute"],
"homepage": "https://github.com/webignition/absolute-url-deriver",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jon Cram",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"webignition\\AbsoluteUrlDeriver\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"webignition\\Tests\\AbsoluteUrlDeriver\\": "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",
"webignition/uri": ">=0.3,<1"
},
"require-dev": {
"phpunit/phpunit": "^7",
"squizlabs/php_codesniffer": "^3"
},
"minimum-stability":"dev",
"prefer-stable":true
}