-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 789 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 789 Bytes
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
{
"name": "root/augmented-reality",
"description": "Adds blocks for augmented reality experiences.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "stable",
"authors": [
{
"name": "Ryan Kienstra",
"email": "kienstraryan@gmail.com"
}
],
"require": {
"php": ">=7.2",
"composer/installers": "^1.7"
},
"require-dev": {
"10up/wp_mock": "0.4.2",
"dealerdirect/phpcodesniffer-composer-installer": "0.6.2",
"phpcompatibility/phpcompatibility-wp": "*",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "8.5.5",
"wp-coding-standards/wpcs": "2.3.0"
},
"autoload": {
"psr-4": {"AugmentedReality\\": "php/"}
},
"autoload-dev": {
"psr-4": {"AugmentedReality\\": "tests/php/"}
},
"scripts": {
"test": [
"phpunit"
]
}
}