-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·41 lines (41 loc) · 1006 Bytes
/
composer.json
File metadata and controls
executable file
·41 lines (41 loc) · 1006 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
{
"name": "oobook/priceable",
"type": "library",
"license": "MIT",
"description": "The price feature addible to the any system",
"keywords": ["laravel", "priceable"],
"homepage": "https://github.com/oobook/",
"authors": [
{
"name": "Oğuzhan Bükçüoğlu",
"email": "oguz.bukcuoglu@gmail.com"
}
],
"support": {
"email": "oguz.bukcuoglu@gmail.com"
},
"minimum-stability": "dev",
"require": {
"php": "^8.0|^8.1",
"marshmallow/sluggable": "^1.0",
"moneyphp/money": "^v4.0.3"
},
"autoload": {
"psr-4": {
"Oobook\\Priceable\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oobook\\Priceable\\": "src",
"Oobook\\Priceable\\Database\\": "database"
}
},
"extra": {
"laravel": {
"providers": [
"Oobook\\Priceable\\LaravelServiceProvider"
]
}
}
}