-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
57 lines (56 loc) · 1.53 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
{
"name": "ekino/tiny-png-sonata-media-bundle",
"description": "Tiny Png integration with SonataMedia by Ekino",
"type": "symfony-bundle",
"license": "MIT",
"keywords": ["sonata", "tiny png", "media"],
"homepage": "https://github.com/ekino/tiny-png-sonata-media-bundle",
"authors": [
{
"name": "Ekino PHP Team",
"email": "php@ekino.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/orm": "^2.6",
"sonata-project/admin-bundle": "^3.1",
"sonata-project/media-bundle": "^3.0",
"sonata-project/notification-bundle": "^3.1",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/translation": "^4.4 || ^5.3",
"tinify/tinify": "^1.5"
},
"conflict": {
"sonata-project/admin-bundle": "<3.27"
},
"require-dev": {
"ekino/phpstan-banned-code": "^0.3 || ^0.4",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/phpstan-phpunit": "^0.12",
"phpunit/phpunit": "^8.5",
"symfony/phpunit-bridge": "^6.1"
},
"suggest": {
"liip/monitor-bundle": "^2.16"
},
"autoload": {
"psr-4": {
"Ekino\\TinyPngSonataMediaBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ekino\\TinyPngSonataMediaBundle\\Tests\\": "tests"
},
"files": ["vendor/tinify/tinify/test/curl_mock.php"]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
}
}