-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
37 lines (37 loc) · 1.01 KB
/
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
{
"name": "traviscarden/behat-table-comparison",
"description": "Provides an equality assertion for comparing Behat TableNode tables.",
"type": "library",
"keywords": ["Behat", "Gherkin"],
"license": "MIT",
"authors": [
{
"name": "Travis Carden",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"behat/gherkin": "^4.4.4",
"sebastian/diff": ">=1.4"
},
"require-dev": {
"behat/behat": "^3.3",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"TravisCarden\\BehatTableComparison\\": "src/BehatTableComparison/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"@install-pre-commit"
],
"install-pre-commit": "if [ ! -x .git/hooks/pre-commit ]; then ln -s ../../resources/pre-commit .git/hooks/pre-commit; fi"
}
}