-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (55 loc) · 1.72 KB
/
composer.json
File metadata and controls
56 lines (55 loc) · 1.72 KB
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
{
"name": "webignition/internet-media-type",
"description": "PHP model of an http://en.wikipedia.org/wiki/Internet_media_type",
"keywords": ["internet media type", "media type", "media-type", "content type", "content-type"],
"homepage": "https://github.com/webignition/internet-media-type",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jon Cram",
"email": "jon@webignition.net"
}
],
"autoload": {
"psr-4": {
"webignition\\InternetMediaType\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"webignition\\Tests\\InternetMediaType\\": "tests/"
}
},
"scripts": {
"cs-fixer-dry-run": "./vendor/bin/php-cs-fixer fix --dry-run --verbose --show-progress none",
"cs-fixer-fix": "./vendor/bin/php-cs-fixer fix --diff",
"cs-phpcs": "./vendor/bin/phpcs",
"cs": [
"@cs-fixer-dry-run",
"@cs-phpcs"
],
"static-analysis": "./vendor/bin/phpstan analyse --ansi",
"test": "./vendor/bin/phpunit --colors=always",
"ci": [
"@composer cs",
"@composer test"
]
},
"require": {
"php": ">=8",
"webignition/internet-media-type-interface":"^1.0",
"webignition/quoted-string":"^3.0",
"webignition/string-parser": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12.99",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-phpunit": "^0.12.22",
"friendsofphp/php-cs-fixer": "^3.2"
},
"minimum-stability":"stable",
"prefer-stable":true
}