generated from spatie/package-skeleton-laravel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
73 lines (73 loc) · 1.92 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "mah-shamim/city-bank-api",
"description": "This APIs is used to initiate payment request from Mobile client/others exchange house.",
"keywords": [
"mah-shamim",
"hafijul233",
"lumen",
"city-bank",
"payment",
"exchange",
"laravel",
"bank-api"
],
"homepage": "https://mah-shamim.github.io/city-bank-api/",
"license": "MIT",
"authors": [
{
"name": "MD ARIFUL HAQUE",
"email": "mah.shamim@gmail.com",
"homepage": "https://mah-shamim.github.io",
"role": "Maintainer"
},
{
"name": "Mohammad Hafijul Islam",
"email": "hafijul233@gmail.com",
"homepage": "https://haifjulislam.me",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-json": "*",
"illuminate/contracts": "^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"nunomaduro/larastan": "^1.0",
"orchestra/testbench": "^6.25",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.0"
},
"autoload": {
"psr-4": {
"MahShamim\\CityBank\\": "src"
},
"files": [
"src/helpers.php"
]
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"MahShamim\\CityBank\\CityBankServiceProvider"
],
"aliases": {
"CityBank": "MahShamim\\CityBank\\Facades\\CityBank"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}