-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 895 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 895 Bytes
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
{
"name": "tpenaranda/aiditokens",
"description": "Use custom tokens instead of IDs on Laravel models.",
"homepage": "https://github.com/tpenaranda/aiditokens",
"keywords": ["laravel", "model", "token", "aiditoken"],
"type": "library",
"require": {
"php": "^7.2",
"laravel/framework": "^5 || ^6",
"laravel/helpers": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"license": "MIT",
"authors": [
{
"name": "Tate Peñaranda",
"email": "tate@tpenaranda.com"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"TPenaranda\\Aiditokens\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TPenaranda\\Aiditokens\\Providers\\AiditokensServiceProvider"
]
}
}
}