-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
52 lines (52 loc) · 1.36 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
{
"name": "elaniin/findable",
"description": "An SEO add-on for Statamic.",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"add-on",
"statamic",
"laravel",
"seo",
"schema",
"opengraph",
"elaniin"
],
"type": "statamic-add-on",
"authors": [
{
"name": "Vladimir Contreras",
"email": "vladimir.contreras@elaniin.com"
}
],
"require": {
"spatie/laravel-sitemap": "^5.9"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpcompatibility/php-compatibility": "^9.3",
"sirbrillig/phpcs-import-detection": "^1.3",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Elaniin\\Findable\\": "src"
}
},
"extra": {
"statamic": {
"name": "Findable",
"description": "Findable, an SEO addon for Statamic"
},
"laravel": {
"providers": [
"Elaniin\\Findable\\ServiceProvider"
]
}
},
"scripts": {
"lint:php": "@php ./vendor/bin/parallel-lint --exclude .git --exclude vendor .",
"lint:phpcs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs"
}
}