-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
59 lines (59 loc) · 1.54 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
{
"name": "frosh/plugin-uploader",
"description": "A tool for deploying Shopware plugins to store.shopware.com",
"license": "MIT",
"bin": [
"bin/pluginupload"
],
"autoload": {
"psr-4": {
"FroshPluginUploader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FroshPluginUploader\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-simplexml": "*",
"ext-libxml": "*",
"ext-zip": "*",
"ext-dom": "*",
"ext-curl": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"symfony/console": "^5.4",
"symfony/config": "~5.4",
"symfony/dependency-injection": "~5.4",
"symfony/dotenv": "^5.4",
"symfony/finder": "^5.4",
"symfony/filesystem": "^5.4",
"guzzlehttp/guzzle": "~7.5",
"composer/semver": "^3.3",
"composer/spdx-licenses": "^1.5",
"php-parallel-lint/php-var-dump-check": "^0.5.0",
"knplabs/github-api": "^3.9",
"http-interop/http-factory-guzzle": "^1.2",
"league/commonmark": "^2.3",
"laravel-zero/phar-updater": "^1.1"
},
"replace": {
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-php72": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-intl-idn": "*"
},
"require-dev": {
"ext-phar": "*",
"roave/security-advisories": "dev-master",
"nette/php-generator": "^3.6",
"phpunit/phpunit": "^9.5",
"phpspec/prophecy-phpunit": "^2.0",
"friendsofphp/php-cs-fixer": "^3.13"
}
}