-
Notifications
You must be signed in to change notification settings - Fork 44
/
composer.json
46 lines (46 loc) · 1.79 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
{
"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": "^10.5",
"wp-cli/wp-cli": "^2.11",
"squizlabs/php_codesniffer": "^3.10"
},
"extra": {
"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
}
},
"require": {
"php": "^8.3",
"composer/composer": "^2.7",
"symfony/translation": "^6.4",
"symfony/dependency-injection": "^6.4",
"symfony/event-dispatcher-contracts": "^3.5",
"symfony/event-dispatcher": "^6.4"
}
}