-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
71 lines (71 loc) · 1.86 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": "aerni/advanced-seo",
"description": "Comprehensive SEO addon for Statamic with flexibility in mind",
"keywords": [
"statamic",
"seo"
],
"homepage": "https://github.com/aerni/statamic-advanced-seo",
"license": "proprietary",
"authors": [
{
"name": "Michael Aerni",
"email": "[email protected]",
"homepage": "https://michaelaerni.ch",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.0 || ^11.0",
"laravel/prompts": "^0.1.24",
"spatie/browsershot": "^5.0.5",
"spatie/image": "^3.4",
"spatie/laravel-ray": "^1.32",
"spatie/schema-org": "^3.14",
"statamic/cms": "^5.14",
"whitecube/lingua": "^1.1"
},
"require-dev": {
"nunomaduro/collision": "^7.0 || ^8.0",
"orchestra/testbench": "^8.0 || ^9.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Aerni\\AdvancedSeo\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Aerni\\AdvancedSeo\\Tests\\": "tests"
},
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"extra": {
"statamic": {
"name": "Advanced SEO",
"description": "Comprehensive SEO addon for Statamic with flexibility in mind"
},
"laravel": {
"providers": [
"Aerni\\AdvancedSeo\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}