-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 958 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
{
"name": "open-lms-open-source/behat-junit-extension",
"description": "Behat extension that reports with the JUnit format and is compatible with Moodle reruns.",
"keywords": ["moodle", "behat", "junit"],
"type": "project",
"license": "GPL-3.0",
"authors": [
{
"name": "Mark Nielsen",
"email": "[email protected]",
"homepage": "https://www.blackboard.com",
"role": "Developer"
},
{
"name": "David Castro",
"email": "[email protected]",
"homepage": "https://www.openlms.net",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"behat/behat": "~3.0",
"n98/junit-xml": "^1.0"
},
"require-dev": {
"symfony/process": "~2.5|~3.0",
"phpunit/phpunit": "~4.5",
"friendsofphp/php-cs-fixer": "^1.10"
},
"autoload": {
"psr-4": {
"BehatJUnitExtension\\": "src/"
}
},
"scripts": {
"fix": "php-cs-fixer fix -v"
}
}