-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
54 lines (54 loc) · 1.7 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
{
"name": "maple-syrup-group/dbsampler",
"description": "Rule-based generation of fixture databases by sampling operational databases",
"license": "MIT",
"type": "project",
"bin": ["bin/dbsampler"],
"require": {
"doctrine/dbal": "^2.5",
"fakerphp/faker": "^1.13",
"monolog/monolog": "^1.22||^2.0.0",
"pimple/pimple": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.5",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5"
},
"authors": [
{
"name": "Maple Syrup Media",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Quidco\\DbSampler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Quidco\\DbSampler\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phpcs": "./vendor/bin/phpcs src/ --standard=PSR2 --warning-severity=8",
"phpcbf": "./vendor/bin/phpcbf src/ --standard=PSR2 --warning-severity=8",
"php-cs-fixer-lint": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer --verbose --dry-run fix --rules=@PSR2,no_unused_imports src/",
"php-cs-fixer-fix": "PHP_CS_FIXER_IGNORE_ENV=1 ./vendor/bin/php-cs-fixer --verbose fix --rules=@PSR2,no_unused_imports src/",
"phpunit": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-clover=phpcov.xml --coverage-text",
"lint": [
"@phpcs",
"@php-cs-fixer-lint"
],
"test": "@phpunit",
"fix": [
"@phpcbf",
"@php-cs-fixer-fix"
]
}
}