-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
37 lines (37 loc) · 1 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": "antennaio/laravel-codeception-dbdump",
"description": "Create database dumps ready to be used with Codeception",
"keywords": ["laravel", "php", "testing", "database", "dump", "mysql", "sqlite", "codeception"],
"license": "MIT",
"homepage": "https://github.com/antennaio/laravel-codeception-dbdump",
"require": {
"illuminate/support": "^5.1",
"illuminate/console": "^5.1",
"doctrine/dbal": "~2.3"
},
"require-dev": {
"phpunit/phpunit": "5.*",
"orchestra/testbench": "~3.0",
"mockery/mockery": "^0.9.4"
},
"authors": [
{
"name": "Kazik",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Antennaio\\Codeception\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Antennaio\\Codeception\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"scripts": {
"test": "vendor/bin/phpunit"
}
}