-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.49 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
{
"name": "tschucki/shopware-servant",
"description": "CLI tool to help you create and build Shopware 6 plugins. Creates CMS-Elements & CMS-Blocks",
"keywords": ["shopware-plugin-servant", "shopware-servant", "shopware", "console", "cli"],
"type": "project",
"version": "0.0.3",
"license": "GPL-3.0-or-later",
"support": {
"issues": "https://github.com/Tschucki/shopware-servant/issues",
"source": "https://github.com/Tschucki/shopware-servant"
},
"authors": [
{
"name": "Marcel Wagner",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"nunomaduro/termwind": "^1.15.1"
},
"require-dev": {
"laravel-zero/framework": "^10.2",
"roave/security-advisories": "dev-latest",
"laravel/pint": "^1.13",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.22"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["builds/sw-servant"]
}