-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1 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
{
"name": "mauricerenck/ogimage",
"version": "1.1.8",
"homepage": "https://github.com/mauricerenck/og-image",
"description": "Creates an Open Graph Image for each page",
"type": "kirby-plugin",
"license": "MIT",
"authors": [
{
"name": "Maurice Renck",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"mauricerenck\\OgImage\\": "lib/"
},
"classmap": [
"lib"
]
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"require": {
"php": ">=8.2.0",
"getkirby/composer-installer": "^1.2"
},
"require-dev": {
"getkirby/cms": "^4"
},
"scripts": {
"test": "vendor/bin/phpunit --testdox --colors=always",
"build-test-package": "git archive HEAD -o ogimage.zip --worktree-attributes",
"build-composer": "composer install --no-dev --optimize-autoloader",
"build-release": [
"composer install --no-dev --optimize-autoloader"
]
}
}