-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.67 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.67 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
57
58
59
60
61
62
63
64
65
66
{
"name": "souplette/macaron",
"type": "library",
"license": "MIT",
"description": "RFC6265bis compliant cookie jar for HTTP clients",
"keywords": [
"cookie",
"cookie-jar",
"http",
"http-client",
"http-state",
"RFC6265",
"symfony"
],
"authors": [
{
"name": "ju1ius",
"email": "jules.bernable@gmail.com"
}
],
"scripts": {
"test": "XDEBUG_MODE=off ./tools/phpunit.phar",
"coverage": "rm -rf tmp/coverage && XDEBUG_MODE=off php -dpcov.enabled=1 ./tools/phpunit.phar --coverage-html=tmp/coverage",
"bench": "./tools/phpbench.phar run --report=aggregate"
},
"autoload": {
"psr-4": {
"Souplette\\Macaron\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Souplette\\Macaron\\Tests\\": "tests/",
"Souplette\\Macaron\\Benchmarks\\": "bench/"
}
},
"require": {
"php": ">=8.1",
"ext-intl": "*",
"psr/clock": "^1.0",
"psr/clock-implementation": "*",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"souplette/fusbup": "^1.0"
},
"require-dev": {
"ext-sqlite3": "*",
"guzzlehttp/guzzle": "^7.5",
"php-http/mock-client": "^1.5",
"symfony/clock": "^6.2 || ^7.0",
"symfony/http-client-contracts": "^3.2",
"symfony/http-client": "^6.0 || ^7.0",
"symfony/stopwatch": "^6.2 || ^7.0"
},
"suggest": {
"ext-sqlite3": "To use the default persistent cookie storage implementation.",
"guzzlehttp/guzzle": "To use Macaron as a Guzzle middleware.",
"symfony/http-client": "To use the Symfony Macaron HTTP client."
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true
}
}
}