-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
66 lines (66 loc) · 2.01 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
65
66
{
"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": "~8.1 || ~8.2",
"ext-json": "*",
"ext-pdo": "*",
"riimu/kit-phpencoder": "^2.4",
"robmorgan/phinx": "^0.15.2 | ^0.16"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^1",
"phpunit/phpunit": "^10",
"squizlabs/php_codesniffer": "^3",
"symfony/uid": "^6"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Odan\\Migration\\": "src/Migration/"
}
},
"autoload-dev": {
"psr-4": {
"Odan\\Migration\\Test\\": "tests/"
}
},
"bin": [
"./bin/phinx-migrations"
],
"scripts": {
"cs:check": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix --dry-run --format=txt --verbose --diff --config=.cs.php --ansi"
],
"cs:fix": [
"@putenv PHP_CS_FIXER_IGNORE_ENV=1",
"php-cs-fixer fix --config=.cs.php --ansi --verbose"
],
"sniffer:check": "phpcs --standard=phpcs.xml",
"sniffer:fix": "phpcbf --standard=phpcs.xml",
"stan": "phpstan analyse -c phpstan.neon --no-progress --ansi",
"test": "phpunit --configuration phpunit.xml --do-not-cache-result --colors=always",
"test:all": [
"@cs:check",
"@sniffer:check",
"@stan",
"@test"
],
"test:coverage": "php -d xdebug.mode=coverage -r \"require 'vendor/bin/phpunit';\" -- --configuration phpunit.xml --do-not-cache-result --colors=always --coverage-clover build/logs/clover.xml --coverage-html build/coverage"
}
}