-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.07 KB
/
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
35
36
37
38
39
40
41
42
43
44
{
"name": "myckhel/laravel-iaphub",
"description": "IAPHUB APIs in laravel",
"type": "package",
"license": "MIT",
"homepage": "https://github.com/myckhel/laravel-iaphub",
"keywords": [
"laravel", "iaphub", "iaphub-php", "iaphub", "react-native-iap", "react-native-iaphub", "react-native", "iaphub-api"
],
"authors": [
{
"name": "myckhel",
"email": "myckhel1@hotmail.com"
}
],
"require": {
"illuminate/support": "~8|~9|~10|~11",
"nesbot/carbon": "^2.36.0"
},
"autoload": {
"psr-4": {
"Myckhel\\Iaphub\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Myckhel\\Iaphub\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Myckhel\\Iaphub\\IaphubServiceProvider"
],
"aliases": {
"Iaphub": "Myckhel\\Iaphub\\Facades\\Iaphub"
}
}
},
"require-dev": {}
}