-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
35 lines (35 loc) · 951 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
{
"name": "caciobanu/behat-deprecation-extension",
"type": "behat-extension",
"description": "Deprecation extension for Behat",
"keywords": ["deprecation", "Behat", "bdd"],
"homepage": "https://github.com/caciobanu/behat-deprecation-extension",
"license": "MIT",
"authors": [
{
"name": "Catalin Ciobanu",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.3",
"behat/behat": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "^4.8.36|^6.3|^7.5.15"
},
"autoload": {
"psr-4": { "Caciobanu\\Behat\\DeprecationExtension\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Caciobanu\\Behat\\DeprecationExtension\\Tests\\": "Tests" }
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}