-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
67 lines (67 loc) · 2.22 KB
/
composer.json
File metadata and controls
67 lines (67 loc) · 2.22 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
67
{
"name": "pew-pew/http-factory",
"license": "MIT",
"description": "HTTP factory for decoding request and encoding responses with symfony integration",
"type": "library",
"require": {
"php": "^8.3",
"symfony/http-foundation": "^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": {
"PewPew\\HttpFactory\\": "src"
}
},
"require-dev": {
"symfony/yaml": "^5.4|^6.0|^7.0",
"rybakit/msgpack": "^0.9|^1.0",
"symfony/config": "^5.4|^6.0|^7.0",
"symfony/dependency-injection": "^5.4|^6.0|^7.0",
"symfony/http-kernel": "^5.4|^6.0|^7.0",
"friendsofphp/php-cs-fixer": "^3.49",
"phpunit/phpunit": "^10.5",
"symfony/var-dumper": "^5.4|^6.0|^7.0",
"vimeo/psalm": "^5.21"
},
"autoload-dev": {
"psr-4": {
"PewPew\\HttpFactory\\Tests\\": "tests"
}
},
"suggest": {
"ext-json": "Adds JSON decoder and encoder",
"symfony/yaml": "Adds YAML decoder and encoder",
"rybakit/msgpack": "Adds MSGPACK decoder and encoder",
"symfony/http-kernel": "For Symfony Bundle support",
"symfony/config": "For Symfony Bundle support",
"symfony/dependency-injection": "For Symfony Bundle support"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-main": "1.0.x-dev"
}
},
"config": {
"sort-packages": true,
"platform-check": true,
"bin-compat": "full",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": ["@test:unit", "@test:functional"],
"test:unit": "phpunit --testdox",
"test:functional": "phpunit --testdox --testsuite=functional",
"linter": "@linter:check",
"linter:check": "psalm --no-cache",
"linter:fix": "psalm --no-cache --alter",
"phpcs": "@phpcs:check",
"phpcs:check": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --dry-run --verbose --diff",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes --verbose --diff"
},
"minimum-stability": "dev",
"prefer-stable": true
}