-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·67 lines (67 loc) · 1.32 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
60
61
62
63
64
65
66
67
{
"name": "robinscholz/better-rest",
"description": "Kirby Plugin for better REST requests",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Robin Scholz",
"email": "[email protected]"
},
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"keywords": [
"kirby",
"kirbycms",
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"rest",
"api",
"headless",
"cms",
"kirbytag",
"kirbytags",
"json",
"markdown",
"srcset"
],
"autoload": {
"psr-4": {
"Robinscholz\\": "classes/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"require": {
"php": ">=7.3.0",
"getkirby/composer-installer": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.3",
"getkirby/cms": "^3.2",
"php-coveralls/php-coveralls": "^2.1",
"nunomaduro/phpinsights": "^1.8"
},
"scripts": {
"analyze": "phpstan analyse classes",
"insights": "./vendor/bin/phpinsights -v",
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
}
}