-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
42 lines (42 loc) · 859 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
{
"name": "tobimori/kirby-seo",
"description": "The ultimate Kirby SEO toolkit",
"type": "kirby-plugin",
"version": "2.0.0-alpha.1",
"license": "proprietary",
"homepage": "https://github.com/tobimori/kirby-seo#readme",
"authors": [
{
"name": "Tobias Möritz",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"tobimori\\Seo\\": "classes"
}
},
"require": {
"php": ">=8.3.0",
"getkirby/composer-installer": "^1.2.1"
},
"suggest": {
"spatie/schema-org": "Enable the Schema.org support"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.48",
"spatie/schema-org": "^3.23"
},
"scripts": {
"dist": "composer install --no-dev --optimize-autoloader"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"getkirby/composer-installer": true
}
},
"extra": {
"kirby-cms-path": false
}
}