-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
27 lines (27 loc) · 1013 Bytes
/
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
{
"name": "jbouzekri/phumbor-bundle",
"type": "symfony-bundle",
"description": "A Symfony Bundle to use the minimal Thumbor PHP client from webfactory/phumbor",
"keywords": ["phumbor", "thumbor", "Bundle", "Helper", "Twig", "Symfony"],
"homepage": "https://github.com/jbouzekri/PhumborBundle",
"license": "MIT",
"require": {
"php": "^7.2|8.0.*|8.1.*|8.2.*|8.3.*",
"symfony/config": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^3.4|^4.4|^5.0|^6.0|^7.0",
"twig/twig": "^1.34|^2.0|^3.0",
"webfactory/phumbor": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.5.26|^9.5.20",
"symfony/yaml": "^3.4|^4.4|^5.0|^6.0|^7.0",
"symfony/phpunit-bridge": ">=6.0"
},
"autoload": {
"psr-4": { "Jb\\Bundle\\PhumborBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Jb\\Bundle\\PhumborBundle\\Tests\\": "tests" }
}
}