-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.42 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "graze/sprout",
"description": "Seed data for your project",
"keywords": [
"graze",
"sprout",
"database seeder",
"database"
],
"homepage": "https://github.com/graze/sprout",
"license": "MIT",
"authors": [
{
"name": "Harry Bragg",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Graze Developers",
"email": "[email protected]",
"homepage": "http://www.graze.com",
"role": "Development Team"
}
],
"config": {
"platform": {
"php": "7.3"
}
},
"require": {
"php": "^7.0",
"graze/parallel-process": "^0.7",
"graze/console-diff-renderer": "^0.6.1",
"graze/data-structure": "^2.0",
"graze/config-validation": "^0.2",
"league/flysystem": "^1.0",
"psr/log": "^1.0",
"respect/validation": "^1.1",
"symfony/console": "^3.3 | ^4",
"symfony/yaml": "^3.3 | ^4"
},
"require-dev": {
"graze/standards": "^2.0",
"mockery/mockery": "^1",
"phpunit/phpunit": "^5.7.21 | ^6 | ^7",
"squizlabs/php_codesniffer": "^3.3.1"
},
"autoload": {
"psr-4": {
"Graze\\Sprout\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\Sprout\\Test\\": "tests/src",
"Graze\\Sprout\\Test\\Unit\\": "tests/unit",
"Graze\\Sprout\\Test\\Integration\\": "tests/integration"
}
},
"bin": [
"./bin/sprout",
"./bin/process-mysqldump"
]
}