-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
69 lines (69 loc) · 1.83 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
{
"name": "ajgarlag/psr-http-message-bundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Antonio J. García Lagar",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"symfony/psr-http-message-bridge": "^1.1|^2.0",
"psr/http-factory": "^1.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.8",
"nyholm/psr7": "^1.1",
"phpunit/phpunit": "^9.5",
"sensio/framework-extra-bundle": "^5.5.4|^6.2.6",
"symfony/browser-kit": "^5.4|^6.0",
"symfony/monolog-bridge": "^5.4|^6.0",
"symfony/monolog-bundle": "^3.2",
"symfony/phpunit-bridge": "^6.1",
"symfony/yaml": "^5.4|^6.0"
},
"conflict": {
"sensio/framework-extra-bundle": "<5.3"
},
"suggest": {
"nyholm/psr7": "Provides autowiring aliases for PSR-17"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"Ajgarlag\\Bundle\\PsrHttpMessageBundle\\": "src/"
},
"exclude-from-classmap": [
"/tests/"
]
},
"autoload-dev": {
"psr-4": {
"Ajgarlag\\Bundle\\PsrHttpMessageBundle\\Tests\\": "tests/",
"Tests\\Fixtures\\": "tests/Fixtures/"
}
},
"scripts": {
"fix-cs": [
"@php vendor/bin/php-cs-fixer fix --ansi"
],
"lint": [
"@php vendor/bin/php-cs-fixer fix --dry-run --ansi"
],
"test": [
"@php vendor/bin/phpunit --colors=always"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-main": "1.2.x-dev"
}
}
}