-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
66 lines (64 loc) · 1.28 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
{
"name": "elightup/slim-seo",
"type": "wordpress-plugin",
"keywords": [
"wordpress",
"wordpress-plugin",
"seo",
"search engine",
"search engine optimization"
],
"description": "A fast & automated WordPress SEO plugin",
"homepage": "https://wpslimseo.com",
"license": "GPL-2.0",
"authors": [
{
"name": "Tran Ngoc Tuan Anh",
"email": "[email protected]",
"homepage": "https://wpslimseo.com",
"role": "Developer"
}
],
"repositories": [
{
"type": "github",
"url": "https://github.com/elightup/slim-twig"
}
],
"autoload": {
"psr-4": {
"SlimSEO\\": "src/"
}
},
"require": {
"elightup/slim-twig": "dev-master",
"php": ">=7.2"
},
"config": {
"allow-plugins": true
},
"extra": {
"dev-files": {
"/": [
"tests/",
".gitignore",
"composer.*",
"phpcs.xml",
"phpunit.xml",
"slim-twig.php"
]
}
},
"scripts": {
"post-update-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
],
"post-install-cmd": [
"echo Deleting .git dirs...",
"rm -rf vendor/**/**/.git"
],
"phpcs": "phpcs > phpcs.txt",
"phpstan": "phpstan --memory-limit=2048M > phpstan.txt"
}
}