-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.19 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
{
"name": "shapin/datagen",
"description": "A simple lib to deal with fixtures.",
"keywords": ["fixtures","database","dbal","symfony"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Olivier Dolbeau",
"homepage": "http://odolbeau.fr/"
}
],
"require": {
"php": ">7.2",
"psr/log": "^1.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.2",
"phpunit/phpunit": "^8.5",
"symfony/http-kernel": "^4.4|^5.1",
"symfony/framework-bundle": "^4.4|^5.1",
"symfony/yaml": "^4.4|^5.1",
"symfony/phpunit-bridge": "^4.4|^5.1",
"shapin/stripe": "dev-master"
},
"suggest": {
"doctrine/dbal": "Needed to load DBAL fixtures",
"shapin/stripe": "Needed to load Stripe fixtures"
},
"autoload": {
"psr-4": {
"Shapin\\Datagen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapin\\Datagen\\Tests\\": "tests/"
}
},
"scripts": {
"coverage": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml",
"test": "vendor/bin/phpunit"
}
}