This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
71 lines (71 loc) · 1.79 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
68
69
70
71
{
"name": "bnomei/kirby3-plopfile",
"type": "kirby-plugin",
"version": "1.2.1",
"description": "Plopfile to generate and append to various files for Kirby3 CMS using Plop.js",
"license": "MIT",
"keywords": [
"kirby3",
"kirby3-cms",
"cli",
"commandline",
"make",
"generator",
"generate",
"template",
"plop",
"prompt",
"inquirer",
"handlebars",
"hbs",
"automate",
"consistency",
"workflow"
],
"authors": [
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"require": {
"php": ">=8.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"scripts": {
"dev": [
"composer install",
"yarn upgrade",
"yarn add prettier --dev",
"yarn prettier --write src"
],
"dist": [
"composer install --no-dev --optimize-autoloader",
"yarn prettier --write src",
"yarn remove prettier",
"rm -rf node_modules",
"yarn install",
"git rm -rf --cached .; git add .;"
],
"reset": [
"rm -rf tests; mkdir tests;mkdir tests/content;mkdir tests/site;mkdir tests/site/accounts;mkdir tests/site/blueprints;mkdir tests/site/commands;mkdir tests/site/config;mkdir tests/site/controllers;mkdir tests/site/languages;mkdir tests/site/models;mkdir tests/site/plugins;mkdir tests/site/snippets;mkdir tests/site/templates;touch tests/image.png"
],
"test": [
"composer reset",
"phpunit --configuration ./phpunit.xml"
]
},
"suggest": {
"bnomei/autoloader-for-kirby": "Helper Class to automatically load various Kirby extensions in a plugin"
}
}