-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.27 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.27 KB
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
{
"name": "tigusigalpa/marketstack-php",
"description": "A modern PHP/Laravel package for interacting with the Marketstack API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Igor Sazonov",
"email": "sovletig@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/support": "^10.0|^11.0",
"illuminate/http": "^10.0|^11.0",
"illuminate/collections": "^10.0|^11.0"
},
"require-dev": {
"pestphp/pest": "^2.0",
"orchestra/testbench": "^8.0|^9.0",
"mockery/mockery": "^1.5"
},
"autoload": {
"psr-4": {
"Tigusigalpa\\Marketstack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tigusigalpa\\Marketstack\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Tigusigalpa\\Marketstack\\MarketstackServiceProvider"
],
"aliases": {
"Marketstack": "Tigusigalpa\\Marketstack\\Facades\\Marketstack"
}
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
}
}