-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.51 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
{
"name": "sematico/baselibs-schema",
"description": "A chainable wrapper for creating database tables schema powered by wpdb in WordPress.",
"keywords": [
"wordpress",
"sematico",
"framework",
"database",
"query builder",
"baselibs",
"schema"
],
"authors": [{
"name": "Alessandro Tesoro",
"email": "[email protected]"
}],
"homepage": "https://github.com/alessandrotesoro/schema",
"license": "MIT",
"support": {
"issues": "https://github.com/alessandrotesoro/schema/issues"
},
"autoload": {
"psr-4": {
"Sematico\\Baselibs\\Schema\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sematico\\Baselibs\\Schema\\Tests\\": "tests"
}
},
"require-dev": {
"10up/wp_mock": "^0.4.2",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"pestphp/pest": "^3.2",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^5.1",
"wp-coding-standards/wpcs": "^3.0",
"yoast/phpunit-polyfills": "^3.0"
},
"repositories": [],
"config": {
"bin-dir": "bin",
"sort-packages": true,
"preferred-install": {
"*": "dist"
},
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"install-tests": "bash bin/install-wp-tests.sh wordpress_test root '' localhost latest",
"test": "./bin/pest --group=unit",
"test-integration": "./bin/pest --group=integration"
},
"prefer-stable": true,
"minimum-stability": "dev"
}