-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
47 lines (47 loc) · 1011 Bytes
/
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
{
"name": "michalsn/codeigniter4-uuid",
"description": "UUID package for CodeIgniter 4 with support for Model and Entity.",
"keywords": [
"codeigniter4", "uuid", "model", "entity"
],
"homepage": "https://github.com/michalsn/codeigniter4-uuid",
"authors": [
{
"name": "michalsn",
"homepage": "https://github.com/michalsn",
"role": "Developer"
}
],
"license": "MIT",
"repositories": [
{
"type": "vcs",
"url": "https://github.com/codeigniter4/CodeIgniter4"
}
],
"require": {
"php": ">=8.1",
"ramsey/uuid": "^4.7"
},
"minimum-stability": "dev",
"require-dev": {
"phpunit/phpunit" : "8.5.*",
"codeigniter4/codeigniter4": "dev-develop"
},
"autoload": {
"psr-4": {
"Michalsn\\Uuid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Support\\": "tests/_support"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"post-update-cmd": [
"@composer dump-autoload"
]
}
}