forked from alsofronie/eloquent-uuid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 979 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
{
"name": "minusmillionaer/eloquent-uuid",
"description": "A Laravel Eloquent Model trait for using UUID's as primary keys",
"type": "library",
"require": {
"ramsey/uuid": "^3 || ^4"
},
"require-dev": {
"laravel/framework": "^5.8.0",
"phpunit/phpunit": "~5.7"
},
"license": "MIT",
"authors": [
{
"name": "Alex Sofronie",
"email": "[email protected]"
},
{
"name": "Giuliano Schindler",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/minusmillionaer/eloquent-uuid/issues",
"source": "https://github.com/minusmillionaer/eloquent-uuid"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"NETZFABRIK\\Uuid\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}