-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1003 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
43
44
45
{
"name": "wceu2018/unit-testing-workshop",
"description": "Code for the workshop \"An Introduction to Unit Testing (for WordPress)\" at WordCamp Europe 2018.",
"homepage": "https://2018.europe.wordcamp.org/session/an-introduction-to-unit-testing-for-wordpress/",
"type": "wordpress-plugin",
"keywords": [
"component testing",
"module testing",
"testing",
"unit testing",
"wceu",
"wordcamp",
"wordpress",
"workshop",
"wp"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Carl Alexander",
"homepage": "https://carlalexander.ca"
},
{
"name": "Thorsten Frommen",
"homepage": "https://tfrommen.de"
},
{
"name": "Giuseppe Mazzapica",
"homepage": "https://gmazzap.me"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"brain/monkey": "^2",
"mockery/mockery": "^1",
"phpunit/phpunit": "^5.7"
},
"config": {
"platform": {
"php": "5.6.0"
}
}
}