-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.14 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.14 KB
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
{
"name": "cycle/schema-renderer",
"type": "library",
"license": "MIT",
"description": "Utils for Cycle ORM Schema rendering",
"require": {
"php": ">=8.1",
"cycle/orm": "^2.0",
"symfony/polyfill-php83": "^1.31.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"spiral/code-style": "^2.2.2",
"spiral/dumper": "^3.3",
"vimeo/psalm": "^5.26.1 || ^6.8.9"
},
"autoload": {
"psr-4": {
"Cycle\\Schema\\Renderer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cycle\\Schema\\Renderer\\Tests\\": "tests/Schema/Renderer/"
}
},
"scripts": {
"cs:diff": "php-cs-fixer fix --dry-run -v --diff --show-progress dots",
"cs:fix": "php-cs-fixer fix -v",
"psalm": "psalm",
"psalm:ci": "psalm --output-format=github --shepherd --show-info=false --stats --threads=4",
"psalm:baseline": "psalm --set-baseline=psalm-baseline.xml",
"test": "phpunit --color=always"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}