-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.27 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
{
"name": "marekskopal/cycle-decimal",
"type": "library",
"description": "Decimal type from ext-decimal PHP extension support for Cycle ORM",
"keywords": [
"cycle",
"decimal",
"orm",
"cycle-orm",
"ext-decimal"
],
"license": "MIT",
"authors": [
{
"name": "Marek Skopal",
"homepage": "https://www.marekskopal.cz"
}
],
"require": {
"php": ">=8.1",
"ext-decimal": "^1.1",
"cycle/orm": "^2.7",
"cycle/annotated": "^4.1"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.3",
"phpunit/phpunit": "^10.2",
"spatie/ray": "^1.39",
"slevomat/coding-standard": "^8.14",
"phpstan/phpstan-strict-rules": "^1.5"
},
"autoload": {
"psr-4": {
"MarekSkopal\\Cycle\\Decimal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"FinGather\\Tests\\": [
"tests/"
]
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}