-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
92 lines (92 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "bnomei/autoloader-for-kirby",
"type": "project",
"version": "5.0.0",
"license": "MIT",
"description": "Helper to automatically load various Kirby extensions in a plugin",
"authors": [
{
"name": "Bruno Meilick",
"email": "[email protected]"
}
],
"keywords": [
"kirby",
"kirby-cms",
"extension",
"extensions",
"autoload",
"autoloader",
"register",
"registry",
"blueprints",
"commands",
"classes",
"collections",
"controllers",
"snippets",
"templates",
"routes",
"languages",
"translations",
"blockmodels",
"pagemodels",
"usermodels"
],
"autoload": {
"psr-4": {
"Bnomei\\": "classes/"
},
"files": [
"helpers.php"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"allow-plugins": {
"getkirby/composer-installer": true,
"pestphp/pest-plugin": true
}
},
"conflict": {
"getkirby/cms": "<5.0"
},
"require": {
"php": ">=8.2.0",
"mustangostang/spyc": "^0.6.3",
"symfony/finder": "^7.0",
"symfony/yaml": "^7.0"
},
"require-dev": {
"getkirby/cms": "^5.0.0-alpha.4",
"larastan/larastan": "^v3.0.0",
"laravel/pint": "^1.13",
"pestphp/pest": "^v3.5.1",
"spatie/ray": "^1.39"
},
"scripts": {
"stan": "./vendor/bin/phpstan",
"fix": "./vendor/bin/pint",
"test": "./vendor/bin/pest --profile",
"dist": [
"composer fix",
"composer install --no-dev --optimize-autoloader",
"git rm -rf --cached .; git add .;"
],
"kirby": [
"composer install",
"composer update",
"composer install --working-dir=tests/kirby --no-dev --optimize-autoloader",
"composer update --working-dir=tests/kirby",
"sed -i.bak 's/function dump(/function xdump(/g' tests/kirby/config/helpers.php",
"sed -i.bak 's/function e(/function xe(/g' tests/kirby/config/helpers.php"
]
},
"extra": {
"kirby-cms-path": "tests/kirby"
},
"suggests": {
"bnomei/kirby3-plopfile": "Plopfile to generate and append to various files for Kirby CMS using Plop.js"
}
}