-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.29 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
{
"name": "pure/installer",
"description": "Shopware project ro plugin installer.",
"keywords": ["shopware"],
"license": "MIT",
"authors": [
{
"name": "Peter Roj",
"email": "mail@peterroj.de"
}
],
"repositories": [
{
"type": "path",
"url": "~/dev/private/pure/template-generator"
}
],
"require": {
"php": "^7.4|^8.0",
"guzzlehttp/guzzle": "^7.5",
"pureware/template-generator": "@dev",
"symfony/console": "^5.0|^6.0",
"symfony/process": "^5.0|^6.0",
"symfony/string": "^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.3",
"symfony/var-dumper": "^6.0"
},
"bin": [
"bin/pure-installer"
],
"autoload": {
"psr-4": {
"Pure\\Installer\\Console\\": "src/",
"Pure\\TemplateGenerator\\": "../template-generator/src"
}
},
"autoload-dev": {
"psr-4": {
"Pure\\Installer\\Console\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}