-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
48 lines (48 loc) · 955 Bytes
/
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
{
"name": "bnomei/kirby3-recently-modified",
"description": "Kirby Section to display recently modified content pages",
"license": "MIT",
"type": "kirby-plugin",
"version": "4.3.0",
"authors": [
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"keywords": [
"kirby",
"kirby-cms",
"kirby-plugin",
"modified",
"user",
"page",
"pages",
"collection",
"list",
"section",
"widget",
"recently",
"changes"
],
"require": {
"getkirby/composer-installer": "^1.2"
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"scripts": {
"fix": "php-cs-fixer fix",
"test": [
"mkdir -p tests/logs",
"@putenv XDEBUG_MODE=coverage",
"phpunit --configuration ./phpunit.xml"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
]
}
}