-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
82 lines (82 loc) · 2.39 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
77
78
79
80
81
82
{
"name": "nanbando/core",
"description": "Simple backup-application for automated website backups.",
"license": "MIT",
"authors": [
{
"name": "Johannes Wachter",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-xml": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-zip": "*",
"nanbando/embedded-composer": "^1.0",
"composer/composer": "^2.0",
"symfony/console": "^5.2",
"symfony/http-kernel": "^5.2",
"symfony/dependency-injection": "^5.2",
"symfony/framework-bundle": "^5.2",
"symfony/event-dispatcher": "^5.2",
"symfony/config": "^5.2",
"symfony/yaml": "^5.2",
"symfony/options-resolver": "^5.2",
"symfony/filesystem": "^5.2",
"symfony/proxy-manager-bridge": "^5.2",
"scriptfusion/byte-formatter": "^3.2",
"nanbando/phar-updater": "^2.0.1",
"cocur/slugify": "^4.0",
"neutron/temporary-filesystem": "^3.0",
"emgag/flysystem-hash": "^1.0",
"composer/semver": "^3.0",
"phpseclib/phpseclib": "^2.0",
"webmozart/path-util": "^2.3",
"league/flysystem-ziparchive": "^1.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/flysystem-sftp": "^1.0",
"symfony/dotenv": "^5.2",
"nelexa/zip": "^4.0",
"superbalist/flysystem-google-storage": "^7.2"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^8.5",
"league/flysystem-memory": "^1.0",
"phpspec/prophecy": "^1.19"
},
"autoload": {
"psr-4": {
"Nanbando\\": "src/"
}
},
"bin": [
"bin/nanbando",
"bin/nanbando.php"
],
"scripts": {
"post-autoload-dump": "Dflydev\\EmbeddedComposer\\Core\\Script::postAutoloadDump"
},
"extra": {
"nanbando": {
"bundle-classes": [
"Nanbando\\Bundle\\NanbandoBundle"
]
}
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:nanbando/dflydev-embedded-composer.git"
},
{
"type": "vcs",
"url": "[email protected]:nanbando/phar-updater.git"
},
{
"type": "vcs",
"url": "[email protected]:nanbando/file_get_contents.git"
}
]
}