-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
70 lines (70 loc) · 1.91 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": "gapple/structured-fields",
"description": "Library for Structured Field Values for HTTP ",
"type": "library",
"keywords": ["http", "rfc8941"],
"license": [
"MIT",
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Geoff Appleby"
}
],
"support": {
"source": "https://github.com/gapple/structured-fields",
"issues": "https://github.com/gapple/structured-fields/issues"
},
"autoload": {
"psr-4": {
"gapple\\StructuredFields\\": "src/",
"gapple\\Tests\\StructuredFields\\": "tests/"
}
},
"scripts": {
"phpcs": "phpcs",
"phpstan": "phpstan analyse",
"phpunit": "phpunit",
"phpmd": "phpmd src,tests ansi phpmd.ruleset.xml"
},
"require": {
"php": "^8.1",
"ext-json": "*"
},
"require-dev": {
"httpwg/structured-field-tests": "*@dev",
"paragonie/constant_time_encoding": "^2.6.3 || ^3.0.0",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^9.5.27",
"squizlabs/php_codesniffer": "^3.7.1"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-develop": "2.x-dev"
}
},
"repositories": [
{
"type": "package",
"package": {
"name": "httpwg/structured-field-tests",
"version": "dev-main",
"dist": {
"url": "https://github.com/httpwg/structured-field-tests/archive/main.zip",
"type": "zip"
},
"source": {
"url": "[email protected]:httpwg/structured-field-tests.git",
"type": "git",
"reference": "main"
}
}
}
]
}