-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.38 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
{
"name": "projecthanif/exchangerate",
"description": "A currency converter package",
"keywords": [
"php",
"laravel",
"currency converter",
"currency"
],
"minimum-stability": "dev",
"prefer-stable": true,
"license": "MIT",
"autoload": {
"psr-4": {
"Projecthanif\\ExchangeRate\\": "src/"
}
},
"authors": [
{
"name": "projecthanif",
"email": "iamustapha213@gmail.com"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {
"php": "^8.0",
"illuminate/support": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/container": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/http": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"illuminate/config": "~5.6.34|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0",
"guzzlehttp/guzzle": "8.0.x-dev",
"phpoption/phpoption": "^1.9@dev",
"vlucas/phpdotenv": "^5.6@dev"
},
"extra": {
"laravel": {
"providers": [
"Projecthanif\\ExchangeRate\\ExchangeRateServiceProvider"
]
}
},
"scripts": {
"post-update-cmd": [
"@php artisan vendor:publish --provider=\"Projecthanif\\ExchangeRate\\ExchangeRateServiceProvider\" --tag=config --force"
],
"post-install-cmd": [
"@php artisan vendor:publish --provider=\"Projecthanif\\ExchangeRate\\ExchangeRateServiceProvider\" --tag=config --force"
]
},
"version": "1.0.0"
}