forked from ckfinder/ckfinder-symfony-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·38 lines (38 loc) · 969 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
35
36
37
38
{
"name": "crealoz/ckfinder-symfony-bundle",
"description": "CKFinder bundle for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "CKSource",
"homepage": "http://cksource.com"
}
],
"require": {
"php": "^7.2",
"symfony/framework-bundle": "5.*",
"symfony/form": "5.*",
"symfony/console": "5.*",
"pimple/pimple": "~3.0",
"monolog/monolog": "~1.4|~2.0",
"league/flysystem": "^1.0.37",
"league/flysystem-aws-s3-v3": "^1.0.13",
"league/flysystem-cached-adapter": "^1.0.6"
},
"require-dev": {
"phpunit/phpunit": "~5.7"
},
"config": {
"sort-packages": true,
"preferred-install": {
"symfony/doctrine-bridge": "source",
"*": "dist"
}
},
"autoload": {
"psr-4": {
"CKSource\\Bundle\\CKFinderBundle\\": "/src"
}
}
}