-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
42 lines (42 loc) · 952 Bytes
/
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
{
"name": "kienstra/machine-learning",
"description": "Adds blocks for augmented reality experiences.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"authors": [
{
"name": "Ryan Kienstra",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2 || ^8",
"composer/installers": "^1.7"
},
"require-dev": {
"10up/wp_mock": "0.4.2",
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2",
"phpcompatibility/phpcompatibility-wp": "2.1.3",
"mockery/mockery": "1.5.0",
"phpunit/phpunit": "^8",
"wp-coding-standards/wpcs": "2.3.0"
},
"autoload": {
"psr-4": {"MachineLearning\\": "php/"}
},
"autoload-dev": {
"psr-4": {"MachineLearning\\": "tests/php/"}
},
"scripts": {
"test": [
"phpunit --do-not-cache-result"
]
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}