-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
62 lines (62 loc) · 1.62 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": "cycle/schema-builder",
"type": "library",
"license": "MIT",
"description": "Cycle ORM Schema Builder",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "[email protected]"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "[email protected]"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "[email protected]"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cycle"
}
],
"require": {
"php": ">=8.0",
"cycle/orm": "^2.7",
"cycle/database": "^2.7.1",
"yiisoft/friendly-exception": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"spiral/tokenizer": "^2.8",
"vimeo/psalm": "^5.12",
"symfony/console": "^6.0 || ^7.0",
"spiral/code-style": "^2.2"
},
"autoload": {
"psr-4": {
"Cycle\\Schema\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cycle\\Schema\\Tests\\": "tests/Schema/"
}
},
"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"
}
}