-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
48 lines (48 loc) · 1.22 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
{
"name": "gearbox-solutions/eloquent-filemaker",
"description": "A package for getting FileMaker records as Eloquent models in Laravel",
"type": "library",
"license": "MIT",
"keywords": [
"Gearbox Solutions",
"FileMaker",
"Database",
"Data API",
"Models",
"Eloquent",
"Laravel"
],
"authors": [
{
"name": "David Nahodyl",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"GearboxSolutions\\EloquentFileMaker\\": "src/",
"Tests\\": "tests/"
}
},
"require": {
"php": ">=8.0",
"illuminate/database": "^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^7.5",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"mockery/mockery": "^1.5.1",
"laravel/pint": "^1.17"
},
"extra": {
"laravel": {
"providers": [
"GearboxSolutions\\EloquentFileMaker\\Providers\\FileMakerConnectionServiceProvider"
],
"aliases": {
"FM": "GearboxSolutions\\EloquentFileMaker\\Support\\Facades\\FM"
}
}
}
}