-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
45 lines (45 loc) · 1.16 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
{
"name": "wagnerwagner/merx",
"description": "A toolkit to create online shops with Kirby",
"version": "1.9.1",
"license": "proprietary",
"homepage": "https://merx.wagnerwagner.de",
"type": "kirby-plugin",
"authors": [
{
"name": "Tobias Wolf",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/wagnerwagner/merx/issues",
"source": "https://github.com/wagnerwagner/merx"
},
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"getkirby/composer-installer": "^1.2",
"stripe/stripe-php": "^14"
},
"require-dev": {
"phpunit/phpunit": "^9",
"getkirby/cms": "^3.9 || ^4.0"
},
"autoload": {
"psr-4": {
"Wagnerwagner\\Merx\\": "src/"
}
},
"extra": {
"kirby-cms-path": false
},
"scripts": {
"analyze:psalm": "psalm",
"test": "./vendor/bin/phpunit --bootstrap tests/bootstrap.php tests"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
}
}