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