-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.47 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.47 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "larament/seokit",
"description": "A complete SEO package for Laravel, covering everything from meta tags to social sharing and structured data.",
"keywords": [
"laravel",
"seokit",
"seo",
"seo-tools",
"seo-optimization",
"meta-tags",
"open-graph",
"twitter-cards",
"structured-data",
"json-ld",
"schema-org",
"social-sharing",
"laravel-package",
"laravel-seo",
"seo-kit",
"seo-manager",
"seo-helper",
"seo-integration",
"web-seo",
"search-engine-optimization"
],
"homepage": "https://github.com/larament/seokit",
"license": "MIT",
"authors": [
{
"name": "Raziul Islam",
"email": "hello@raziul.dev"
}
],
"require": {
"php": "^8.3",
"illuminate/contracts": "^11.0||^12.0||^13.0"
},
"require-dev": {
"laravel/pint": "^1.14",
"larastan/larastan": "^3.0",
"orchestra/testbench": "^11.0.0||^10.0.0||^9.0.0",
"pestphp/pest": "^4.0",
"pestphp/pest-plugin-arch": "^4.0",
"pestphp/pest-plugin-laravel": "^4.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Larament\\SeoKit\\": "src/",
"Larament\\SeoKit\\Database\\Factories\\": "database/factories/"
}
},
"autoload-dev": {
"psr-4": {
"Larament\\SeoKit\\Tests\\": "tests/",
"Workbench\\App\\": "workbench/app/"
}
},
"scripts": {
"post-autoload-dump": "@composer run prepare",
"prepare": "@php vendor/bin/testbench package:discover --ansi",
"analyse": "phpstan analyse",
"test": "pest --parallel",
"test:coverage": "pest --coverage --parallel --compact --min=95",
"lint": "pint --parallel"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Larament\\SeoKit\\SeoKitServiceProvider"
],
"aliases": {
"SeoKit": "Larament\\SeoKit\\Facades\\SeoKit"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}