-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.74 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
{
"name": "arrayaccess/wp-core-library",
"description": "WP Core Library for better WordPress development.",
"keywords": [
"WordPress",
"Doctrine",
"WordPress With Doctrine",
"WordPress Rest API"
],
"type": "library",
"license": [
"LGPL-3.0-or-later"
],
"require": {
"php": ">= 8.0",
"ext-pdo_mysql": "*",
"ext-mysqli": "*",
"psr/cache": "^3.0.0",
"doctrine/dbal": "~3.7.1"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.7.2",
"slevomat/coding-standard": "^8.14",
"phpunit/phpunit": "^10.4",
"phpstan/phpstan": "^1.10"
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"suggest": {
"arrayaccess/dns-client": "Native Object Oriented DNS Client for PHP.",
"doctrine/sql-formatter": "A lightweight formatter for SQL queries."
},
"scripts": {
"phpcs": "vendor/bin/phpcs --standard=phpcs.xml.dist",
"phpcbf": "vendor/bin/phpcbf --standard=phpcs.xml.dist",
"phpunit": "vendor/bin/phpunit --configuration phpunit.xml.dist"
},
"autoload": {
"psr-0": {
"ArrayAccess\\WP\\Libraries\\Core\\": "src"
},
"psr-4": {
"ArrayAccess\\WP\\Libraries\\Core\\": "src"
}
},
"autoload-dev": {
"psr-0": {
"ArrayAccess\\WP\\Libraries\\Core\\": "src",
"ArrayAccess\\WP\\Tests\\Libraries\\Core\\": "tests"
},
"psr-4": {
"ArrayAccess\\WP\\Libraries\\Core\\": "src",
"ArrayAccess\\WP\\Tests\\Libraries\\Core\\": "tests"
}
}
}