-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 983 Bytes
/
composer.json
File metadata and controls
46 lines (46 loc) · 983 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "jiny/emoney",
"description": "E-money and Point system for JinyPHP",
"keywords": [
"jinyPHP",
"framework",
"auth",
"emoney",
"point"
],
"homepage": "http://www.jinyphp.com",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "hojinlee",
"email": "infohojin@gmail.com",
"homepage": "http://www.jinyphp.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.2",
"jiny/auth": "^0.5.0"
},
"autoload": {
"psr-4": {
"Jiny\\Emoney\\": "src/"
},
"files" : [
"Helpers/Helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Jiny\\Emoney\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Jiny\\Emoney\\JinyEmoneyServiceProvider"
]
}
}
}