-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 918 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 918 Bytes
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
{
"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": ">= 8.1",
"symfony/config": "^5.4|^6.4|^7.3|^8.0",
"symfony/dependency-injection": "^5.4|^6.4|^7.3|^8.0",
"symfony/http-kernel": "^5.4|^6.4|^7.3|^8.0",
"twig/twig": "^2.14.7|^3.0",
"webfactory/phumbor": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5.58",
"symfony/yaml": "^5.4|^6.4|^7.3|^8.0"
},
"autoload": {
"psr-4": { "Jb\\Bundle\\PhumborBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Jb\\Bundle\\PhumborBundle\\Tests\\": "tests" }
}
}