forked from odan/phinx-migrations-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
62 lines (62 loc) · 1.95 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
{
"name": "odan/phinx-migrations-generator",
"type": "library",
"description": "Migration generator for Phinx",
"keywords": [
"migration",
"migrations",
"generator",
"phinx",
"database",
"mysql"
],
"homepage": "https://github.com/odan/phinx-migrations-generator",
"license": "MIT",
"require": {
"php": "^7.2",
"ext-json": "*",
"ext-pdo": "*",
"riimu/kit-phpencoder": "^2.4",
"robmorgan/phinx": "^0.12",
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"overtrue/phplint": "^1.1",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.4"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Odan\\Migration\\": "src/Migration/"
}
},
"autoload-dev": {
"psr-4": {
"Odan\\Migration\\Test\\": "tests/"
}
},
"bin": [
"./bin/phinx-migrations"
],
"scripts": {
"check-all": [
"@lint",
"@check-style",
"@phpstan",
"@test-coverage"
],
"check-cs": "php-cs-fixer fix --dry-run --format=txt --verbose --diff --diff-format=udiff --config=.cs.php",
"check-style": "phpcs --standard=phpcs.xml",
"fix-cs": "php-cs-fixer fix --config=.cs.php",
"fix-style": "phpcbf --standard=phpcs.xml",
"lint": "phplint ./ --exclude=vendor --no-interaction --no-cache",
"phpstan": "phpstan analyse src tests --level=max -c phpstan.neon --no-progress",
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test-coverage": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}