forked from FriendsOfShopware/FroshPluginUploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 786 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
{
"name": "frosh/plugin-uploader",
"description": "A tool for deploying shopware plugins to store.shopware.com",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-curl": "*",
"symfony/console": "^4.2",
"symfony/config": "~4.2",
"symfony/dependency-injection": "~4.2",
"symfony/dotenv": "^4.2",
"symfony/finder": "^4.2",
"guzzlehttp/guzzle": "~6.0",
"composer/semver": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-zip": "*",
"ext-dom": "*",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"ext-phar": "*",
"nette/php-generator": "^3.2",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"FroshPluginUploader\\": "src/"
}
},
"bin": ["bin/pluginupload"]
}