-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.16 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.16 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
{
"name": "oxcom/symfony-imageproxy-bundle",
"description": "Integration of the standalone server for resizing and converting remote images",
"license": "MIT",
"autoload": {
"psr-4": {
"SymfonyImageProxyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"monolog/monolog": "^2.9 || ^3.4",
"symfony/config": "^5.4 || ^6.3 || ^7.3 || ^8.0",
"symfony/http-kernel": "^5.4 || ^6.3 || ^7.3 || ^8.0",
"symfony/dependency-injection": "^5.4 || ^6.3 || ^7.3 || ^8.0",
"symfony/yaml": "^5.4 || ^6.3 || ^7.3 || ^8.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/test-pack": "^v1.2.0",
"symfony/framework-bundle": "^6.3 || ^7.3 || ^8.0",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.13",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-symfony": "^1.3"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}