-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 894 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 894 Bytes
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
{
"name": "thathoff/kirby-migrations",
"description": "Migrate content or databases when deploying your Kirby project",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Markus Denhoff",
"email": "markus.denhoff@reinorange.com"
}
],
"require": {
"getkirby/composer-installer": "^1.1",
"getkirby/cms": "^4.7.0|^5.0.0",
"getkirby/cli": "^1.6"
},
"extra": {
"installer-name": "migrations",
"kirby-cms-path": false
},
"config": {
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"scripts": {
"phpstan": "phpstan analyse --memory-limit=1G",
"phpcs": "phpcs --standard=.phpcs.xml"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.13",
"phpstan/phpstan": "^2.1"
}
}