-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
61 lines (61 loc) · 1.96 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
{
"name": "cycle/schema-migrations-generator",
"type": "library",
"license": "MIT",
"description": "Cycle ORM Migration generation",
"support": {
"issues": "https://github.com/cycle/schema-migrations-generator/issues",
"source": "https://github.com/cycle/schema-migrations-generator",
"docs": "https://cycle-orm.dev/docs",
"chat": "https://discord.gg/spiralphp"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cycle"
}
],
"require": {
"php": ">=8.1",
"cycle/database": "^2.11.3",
"cycle/schema-builder": "^2.11.1",
"cycle/migrations": "^4.2.4"
},
"require-dev": {
"cycle/annotated": "^3.5",
"cycle/orm": "^2.9.1",
"phpunit/phpunit": "^9.6.22",
"spiral/code-style": "^2.2.0",
"spiral/dumper": "^3.3.1",
"spiral/framework": "^3.14.8",
"vimeo/psalm": "^5.26.1"
},
"autoload": {
"psr-4": {
"Cycle\\Schema\\Generator\\Migrations\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cycle\\Schema\\Generator\\Migrations\\Tests\\": "tests/Migrations/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --color=always",
"test:unit": "phpunit --exclude-group driver --colors=always",
"test:sqlite": "phpunit --group driver-sqlite --colors=always",
"test:pgsql": "phpunit --group driver-postgres --colors=always",
"test:mysql": "phpunit --group driver-mysql --colors=always",
"test:mssql": "phpunit --group driver-sqlserver --colors=always"
}
}