-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.2 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webalternatif/flysystem-failover-microservice",
"description": "A microservice to synchronize files between multiple storages.",
"type": "project",
"license": "MIT",
"require": {
"php": "8.0.*",
"ext-ctype": "*",
"ext-iconv": "*",
"composer/package-versions-deprecated": "1.11.99.3",
"doctrine/doctrine-bundle": "^2.4",
"doctrine/orm": "^2.9",
"league/flysystem": "^2.2",
"league/flysystem-aws-s3-v3": "^2.0",
"league/flysystem-bundle": "^2.0",
"league/flysystem-ftp": "^2.3",
"league/flysystem-sftp": "^2.2",
"nyholm/dsn": "^2.0",
"symfony/console": "5.3.*",
"symfony/dotenv": "5.3.*",
"symfony/flex": "^1.3.1",
"symfony/framework-bundle": "5.3.*",
"symfony/proxy-manager-bridge": "5.3.*",
"symfony/serializer": "5.3.*",
"symfony/yaml": "5.3.*",
"webalternatif/flysystem-dsn-bundle": "^0.3.3",
"webalternatif/flysystem-failover-bundle": "^0.3.0",
"webalternatif/flysystem-openstack-swift": "^0.2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0"
},
"conflict": {
"symfony/symfony": "*"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php72": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"build": "docker build -t webalternatif/flysystem-failover .",
"cs-check": "php-cs-fixer fix --dry-run",
"cs-fix": "php-cs-fixer fix",
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"test": ["@cs-check"]
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "5.3.*"
}
}
}