-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.68 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
{
"name": "babeuloula/cdn-php",
"description": "A CDN written in PHP",
"type": "project",
"require": {
"php": ">=8.3",
"ext-imagick": "*",
"babeuloula/phpunit-coverage-checker": "^1.0",
"bref/bref": "^2.3",
"bref/extra-php-extensions": "^1.7",
"bref/logger": "^1.0",
"league/flysystem": "^3.29",
"league/flysystem-aws-s3-v3": "^3.0",
"league/glide": "^2.3",
"pimple/pimple": "^3.5",
"symfony/dotenv": "^7.2",
"symfony/error-handler": "^7.2",
"symfony/filesystem": "^7.2",
"symfony/http-foundation": "^7.2",
"symfony/runtime": "^7.2",
"symfony/string": "^7.2",
"symfony/translation-contracts": "^3.5"
},
"require-dev": {
"babeuloula/phpcs": "^1.5",
"league/flysystem-memory": "^3.29",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^11.5",
"symfony/var-dumper": "^7.2"
},
"license": "MIT",
"autoload": {
"psr-4": {
"BaBeuloula\\CdnPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BaBeuloula\\CdnPhp\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "BaBeuloula",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
},
"sort-packages": true,
"audit": {
"abandoned": "report"
}
}
}