forked from tlamedia/GrabzitBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 997 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
28
29
30
31
32
33
34
{
"name": "tlamedia/grabzit-bundle",
"type": "symfony-bundle",
"description": "The GrabzitBundle integrates the GrabzIt PHP library with Symfony, allowing you to interact with the GrabzIt API in your Symfony projects.",
"keywords": ["grabzit", "thumbnail", "bundle", "symfony"],
"homepage": "https://github.com/tlamedia",
"license": "MIT",
"authors": [
{
"name": "Torben Lundsgaard",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"grabzit/grabzit": "^3.3.0",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.1"
},
"autoload": {
"psr-4": {
"Tla\\GrabzitBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tla\\GrabzitBundle\\Tests\\": "tests/"
}
}
}