forked from jalameta/jps-support
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 842 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
{
"name": "jalameta/jps-support",
"require": {
"illuminate/support" : ">=5.6",
"illuminate/database": ">=5.6",
"illuminate/http": ">=5.6",
"ramsey/uuid": ">=3.8",
"ext-json": "*"
},
"license": "MIT",
"authors": [
{
"name": "Rifki Alhuraibi",
"email": "[email protected]"
}
],
"suggest": {
"elasticsearch/elasticsearch": "You know, for search!",
"keiko/uuid-shortener": "A simple shortener library for RFC 4122 compatible UUIDs. Change your 36 chars long UUID into it's shorter equivalent. You must install this package if you want to be able to use UUID Shortener"
},
"autoload": {
"psr-4": {
"Jalameta\\Support\\": "src"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}