-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.91 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
{
"name": "camelot/image-asset",
"type": "symfony-bundle",
"description": "Image management library & bundle based on GD to handle image thumbnails",
"license": "MIT",
"authors": [
{
"name": "Ross Riley",
"email": "[email protected]"
},
{
"name": "Carson Full",
"email": "[email protected]"
},
{
"name": "Gawain Lynch",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"camelot/thrower": "^1.0",
"contao/imagine-svg": "^0.1",
"miljar/php-exif": "^0.6.5",
"symfony/filesystem": "^4.3 || ^5.0",
"symfony/finder": "^4.3 || ^5.0",
"symfony/mime": "^4.3 || ^5.0",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"camelot/coding-style": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"symfony/asset": "^4.3 || ^5.0",
"symfony/browser-kit": "^4.3 || ^5.0",
"symfony/console": "^4.3 || ^5.0",
"symfony/css-selector": "^4.3 || ^5.0",
"symfony/debug-bundle": "^4.3 || ^5.0",
"symfony/dotenv": "^4.3 || ^5.0",
"symfony/framework-bundle": "^4.3 || ^5.0",
"symfony/phpunit-bridge": "^4.3 || ^5.0",
"symfony/security-bundle": "^4.3 || ^5.0",
"symfony/twig-bundle": "^4.3 || ^5.0",
"symfony/yaml": "^4.3 || ^5.0",
"twig/twig": "^2.10 || ^3.0",
"vimeo/psalm": "^3.4"
},
"autoload": {
"psr-4": {
"Camelot\\ImageAsset\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\ImageAsset\\Tests\\": "tests"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --show-progress=dots -v",
"test": "vendor/bin/simple-phpunit tests/"
}
}