-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 2.41 KB
/
Copy pathcomposer.json
File metadata and controls
74 lines (74 loc) · 2.41 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
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
67
68
69
70
71
72
73
74
{
"name": "cycle/entity-behavior-identifier",
"type": "library",
"license": "MIT",
"description": "Provides the ability to use ramsey/identifier as various Cycle ORM entity column types",
"homepage": "https://cycle-orm.dev",
"support": {
"issues": "https://github.com/cycle/entity-behavior-identifier/issues",
"source": "https://github.com/cycle/entity-behavior-identifier",
"docs": "https://cycle-orm.dev/docs",
"chat": "https://discord.gg/spiralphp"
},
"authors": [
{
"name": "Anton Titov (wolfy-j)",
"email": "wolfy-j@spiralscout.com"
},
{
"name": "Aleksei Gagarin (roxblnfk)",
"email": "alexey.gagarin@spiralscout.com"
},
{
"name": "Pavel Butchnev (butschster)",
"email": "pavel.buchnev@spiralscout.com"
},
{
"name": "Maksim Smakouz (msmakouz)",
"email": "maksim.smakouz@spiralscout.com"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/cycle"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"require": {
"php": ">=8.2",
"cycle/entity-behavior": "^1.7",
"ramsey/identifier": "^0.1"
},
"require-dev": {
"cycle/annotated": "^4.3",
"doctrine/annotations": "^1.14 || ^2.0",
"phpunit/phpunit": "^9.5",
"spiral/code-style": "^2.2",
"spiral/tokenizer": "^2.14 || ^3.0",
"vimeo/psalm": "^5.26 || ^6.6"
},
"autoload": {
"psr-4": {
"Cycle\\ORM\\Entity\\Behavior\\Identifier\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cycle\\ORM\\Entity\\Behavior\\Identifier\\Tests\\": "tests/Identifier"
}
},
"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:coverage": "phpunit --colors=always --coverage-text",
"test:report": "phpunit --do-not-cache-result --log-junit=.report/phpunit.xml --coverage-clover=.report/coverage-clover.xml --coverage-cobertura=.report/coverage-cobertura.xml --coverage-text --colors=never"
}
}