-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathcomposer.json
71 lines (71 loc) · 2.57 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": "brainstormforce/all-in-one-schemaorg-rich-snippets",
"description": "Get eye catching results in search engines with the most popular schema markup plugin.",
"require-dev": {
"brainmaestro/composer-git-hooks": "^2.6",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"phpcompatibility/php-compatibility": "^9.3",
"wp-coding-standards/wpcs": "^2.2",
"php-stubs/wordpress-stubs": "^6.6",
"szepeviktor/phpstan-wordpress": "^1.3",
"phpstan/phpstan": "^1.12",
"php-stubs/generator": "^0.8.4",
"phpunit/phpunit": "^9.5",
"wp-cli/wp-cli": "^2.11",
"squizlabs/php_codesniffer": "^3.10"
},
"extra": {
"installer-paths": {
"lib/{$name}/": [
"brainstormforce/nps-survey"
],
"admin/{$name}": [
"brainstormforce/bsf-analytics"
]
},
"hooks": {
"pre-commit": [
"echo committing as $(git config user.name)",
"sh bin/block-commits-with-merge-conflict.sh"
]
}
},
"scripts": {
"post-install-cmd": "vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "vendor/bin/cghooks update",
"format": "phpcbf --standard=phpcs.xml.dist",
"lint": "phpcs --standard=phpcs.xml.dist",
"gen-stubs": "php -d memory_limit=-1 vendor/bin/generate-stubs artifact/phpstan/all-in-one-schemaorg-rich-snippets/ --out=tests/php/stubs/aiosrs-stubs.php && rm -rf artifact/phpstan",
"phpstan": "vendor/bin/phpstan --memory-limit=2048M analyse"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
}
},
"require": {
"wp-cli/wp-cli-bundle": "^2.11",
"php": "^7.4",
"composer/composer": "^2.7",
"brainstormforce/nps-survey": "^1",
"composer/installers": "*",
"symfony/translation": "^5.4",
"symfony/dependency-injection": "^5.4",
"symfony/event-dispatcher-contracts": "^2.5",
"symfony/event-dispatcher": "^5.4",
"brainstormforce/bsf-analytics": "^1"
},
"repositories": [
{
"name": "brainstormforce/nps-survey",
"type": "vcs",
"url": "[email protected]:brainstormforce/nps-survey.git"
},
{
"name": "brainstormforce/bsf-analytics",
"type": "vcs",
"url": "[email protected]:brainstormforce/bsf-analytics.git"
}
]
}