-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.1 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
{
"name": "gearsdigital/reporter-for-kirby",
"version": "4.1.1",
"description": "Gather feedback directly out of the Panel! Enable your editors or clients to submit tasks, bugs and ideas either straight to your issue tracker or by E-Mail.",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Steffen Giers",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"KirbyReporter\\": "lib/"
}
},
"require": {
"ext-json": "*",
"getkirby/composer-installer": "^1.2",
"ql/uri-template": "^1.1",
"guzzlehttp/guzzle": "~7.4.0"
},
"config": {
"optimize-autoloader": true
},
"require-dev": {
"phpunit/phpunit": "^9.5.10",
"getkirby/cms": "3.6.0-rc.4",
"mockery/mockery": "^1.4"
},
"scripts": {
"test": "phpunit --bootstrap tests/bootstrap.php tests",
"build": "composer install --no-dev --no-scripts --optimize-autoloader"
},
"extra": {
"kirby-cms-path": "vendor/getkirby/kirby"
}
}