generated from vjik/package-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.04 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
{
"name": "vjik/cycle-typecast",
"type": "library",
"description": "Helper of typecast data in Cycle ORM",
"keywords": [
"cycle",
"typecast",
"datamapper"
],
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/vjik/cycle-typecast/issues?state=open",
"source": "https://github.com/vjik/cycle-typecast"
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"cycle/orm": "^2.1",
"ramsey/uuid": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"roave/infection-static-analysis-plugin": "^1.25",
"vimeo/psalm": "^4.30|^5.21"
},
"autoload": {
"psr-4": {
"Vjik\\CycleTypecast\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Vjik\\CycleTypecast\\Tests\\": "tests"
}
},
"scripts": {
},
"config": {
"sort-packages": true,
"allow-plugins": {
"infection/extension-installer": true
}
}
}