-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.51 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
{
"name": "iafilin/eloquenthttpadapter",
"version": "1.0.1",
"minimum-stability": "stable",
"description": "EloquentHttpAdapter is a Laravel package that allows you to work with RESTful API data using an Eloquent-like syntax. This package makes it easy to perform HTTP requests and handle responses as if working with a standard Eloquent model.",
"license": "MIT",
"authors": [
{
"name": "Igor Filin",
"email": "[email protected]",
"homepage": "https://iafilin.t.me"
}
],
"homepage": "https://github.com/iafilin/eloquenthttpadapter",
"keywords": [
"Laravel",
"EloquentHttpAdapter"
],
"require": {
"php": "^8.0",
"illuminate/support": "^9.0|^10.0|^11.0|^12.0",
"illuminate/http": "^9.0|^10.0|^11.0|^12.0",
"illuminate/database": "^9.0|^10.0|^11.0|^12.0"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~7"
},
"autoload": {
"psr-4": {
"Iafilin\\EloquentHttpAdapter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Iafilin\\EloquentHttpAdapter\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Iafilin\\EloquentHttpAdapter\\EloquentHttpAdapterServiceProvider"
],
"aliases": {
"EloquentHttpAdapter": "Iafilin\\EloquentHttpAdapter\\Facades\\EloquentHttpAdapter"
}
}
}
}