-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 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
{
"name": "tahaghafuri/ckfinder",
"description": "CKFinder PHP connector",
"homepage": "https://github.com/tahaghafuri/ckfinder",
"license": "proprietary",
"authors": [
{
"name": "Taha Amin Ghafuri",
"homepage": "https://tahaghafuri.ir"
}
],
"require": {
"php": ">=8.0",
"symfony/http-kernel": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/http-foundation": "^7.0",
"pimple/pimple": "^3.0",
"monolog/monolog": "~1.4,>=1.4.1",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0",
"ext-json": "*",
"ext-gd": "*",
"symfony/mime": "^7.0",
"friendsofphp/php-cs-fixer": "^3.11",
"league/flysystem-azure-blob-storage": "^3.0",
"spatie/flysystem-dropbox": "^3.0",
"league/flysystem-ftp": "^3.0",
"ext-ftp": "*",
"ext-pdo": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mikey179/vfsstream": "^1.4",
"league/flysystem-adapter-test-utilities": "^3.10"
},
"scripts": {
"cs": [
"php-cs-fixer fix"
],
"build-doc": [
"sh dev/doc/builddoc.sh"
],
"update-locales": [
"git subtree pull --prefix src/CKSource/CKFinder/locales translations master --squash"
]
},
"autoload": {
"psr-0": {
"CKSource": "src/"
},
"psr-4": {
"CKSource\\CKFinder\\Plugin\\": "plugins/"
}
}
}