-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.94 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.94 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
{
"name": "inpsyde/object-hooks-remover",
"description": "Package to remove WordPress hook callbacks that uses object methods or closures.",
"type": "library",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Syde GmbH",
"email": "hello@syde.com",
"homepage": "https://syde.com",
"role": "Company"
},
{
"name": "Giuseppe Mazzapica",
"email": "g.mazzapica@syde.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.4 < 8.5"
},
"require-dev": {
"roots/wordpress-no-content": "dev-main",
"phpunit/phpunit": "^9.6.19",
"phpstan/phpstan": "2.2.x-dev",
"phpstan/phpstan-mockery": "2.0.x-dev",
"phpstan/phpstan-deprecation-rules": "2.0.x-dev",
"php-stubs/wp-cli-stubs": "dev-master",
"syde/phpcs": "dev-main",
"php-stubs/wordpress-stubs": "^6.9"
},
"autoload": {
"psr-4": {
"Inpsyde\\ObjectHooksRemover\\": "src/"
},
"files": [
"inc/object-hooks-remover.php"
]
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\ObjectHooksRemover\\Tests\\": ["tests/src/", "tests/cases/"]
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"composer/*": true,
"inpsyde/*": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"stan": "@php ./vendor/bin/phpstan analyse --no-progress --memory-limit=1G",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}