forked from alexstewartja/bitpay-fleetcart-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 949 Bytes
/
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
{
"name": "alexstewartja/bitpay-fleetcart-module",
"description": "BitPay payment gateway module for FleetCart",
"type": "laravel-module",
"license": "MIT",
"authors": [
{
"name": "Alex Stewart",
"email": "iamalexstewart@gmail.com"
}
],
"require": {
"php": ">=7.3.0",
"joshbrw/laravel-module-installer": "^v2.0.1",
"bitpay/sdk": "^9.0"
},
"autoload": {
"psr-4": {
"Modules\\BitpayFleetcart\\": ""
}
},
"scripts": {
"post-update-cmd": [
"@php artisan module:publish-config BitPay",
"@php artisan module:migrate BitPay",
"@php artisan module:seed BitPay",
"@php artisan module:enable BitPay"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}