-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.22 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.22 KB
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
{
"name": "statamic/seo-pro",
"autoload": {
"psr-4": {
"Statamic\\SeoPro\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"extra": {
"download-dist": [
{
"url": "https://github.com/statamic/seo-pro/releases/download/{$version}/dist.tar.gz",
"path": "resources/dist"
}
],
"statamic": {
"name": "SEO Pro",
"description": "An all-in-one site reporting, metadata mastering, OG managing, Twitter card making, sitemap generating addon."
},
"laravel": {
"providers": [
"Statamic\\SeoPro\\ServiceProvider"
]
}
},
"require": {
"statamic/cms": "^6.5",
"pixelfear/composer-dist-plugin": "^0.1.6"
},
"require-dev": {
"orchestra/testbench": "^10.0 || ^11.0",
"phpunit/phpunit": "^11.5.3 || ^12.0",
"laravel/pint": "^1.17",
"spatie/laravel-ray": "^1.43.6"
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}