This repository has been archived by the owner on Mar 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.48 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
53
54
55
56
57
58
59
60
{
"name": "bmatovu/laravel-eloquent-uuid",
"description": "Laravel Eloquent UUID.",
"homepage": "https://github.com/mtvbrianking/laravel-eloquent-uuid",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"eloquent",
"model",
"uuid"
],
"authors": [
{
"name": "Brian Matovu",
"email": "mtvbrianking@gmail.com",
"homepage": "http://bmatovu.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"illuminate/database": "^5.3|^6.0|^7.0|^8.0",
"illuminate/support": "^5.3|^6.0|^7.0|^8.0",
"ramsey/uuid": "^3.0|^4.0"
},
"require-dev": {
"fzaninotto/faker": "^1.9",
"laravel/framework": "^8.0",
"phpunit/phpunit": "^9.3.3",
"orchestra/testbench": "^6.0"
},
"autoload": {
"psr-4": {
"Bmatovu\\Uuid\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bmatovu\\Uuid\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"doc": "php sami.phar update .sami.dist",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Bmatovu\\Uuid\\UuidServiceProvider"
]
}
}
}