-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.49 KB
/
Copy pathcomposer.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "axeptio/axeptio-wordpress-plugin",
"description": "Axeptio SDK Integration",
"type": "project",
"license": "GPLv3",
"authors": [
{
"name": "Axeptio"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.4 || ^8.0"
},
"scripts": {
"run-stan": "vendor/bin/phpstan analyze --memory-limit=2G --no-progress",
"install-codestandards": "Dealerdirect\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin::run",
"phpcs": "phpcs --basepath=.",
"phpcs-changed": "./bin/phpcs-changed.sh",
"phpcs:fix": "phpcbf",
"test": "php -d auto_prepend_file=tests/constants.php vendor/bin/pest"
},
"autoload": {
"psr-4": {
"\\Axeptio\\Plugin\\": "includes/classes"
},
"files": [
"includes/helpers/helpers.php",
"includes/helpers/utility.php",
"includes/core.php"
]
},
"require-dev": {
"wp-coding-standards/wpcs": "dev-develop",
"rector/rector": "^0.15.0@dev",
"szepeviktor/phpstan-wordpress": "dev-master",
"phpstan/extension-installer": "1.2.x-dev",
"phpcompatibility/phpcompatibility-wp": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"pestphp/pest": "1.x-dev",
"pestphp/pest-plugin-faker": "1.x-dev",
"mockery/mockery": "1.7.x-dev"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"php-http/discovery": true,
"pestphp/pest-plugin": true
}
}
}