forked from gearbox-solutions/eloquent-filemaker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 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
49
{
"name": "bluefeather/eloquent-filemaker",
"description": "A package for getting FileMaker records as Eloquent models in Laravel",
"type": "library",
"license": "MIT",
"keywords": [
"Blue Feather",
"BlueFeather",
"Blue Feather Group",
"FileMaker",
"Database",
"Data API",
"Models",
"Eloquent",
"Laravel"
],
"authors": [
{
"name": "David Nahodyl",
"email": "david@bluefeathergroup.com"
}
],
"autoload": {
"psr-4": {
"BlueFeather\\EloquentFileMaker\\": "src/",
"Tests\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"illuminate/database": "^7.0|^8.0|^9.0",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*"
},
"require-dev": {
"orchestra/testbench": "^5.0 || ^6.0",
"mockery/mockery": "^1.4"
},
"extra": {
"laravel": {
"providers": [
"BlueFeather\\EloquentFileMaker\\Providers\\FileMakerConnectionServiceProvider"
],
"aliases": {
"FM": "BlueFeather\\EloquentFileMaker\\Support\\Facades\\FM"
}
}
}
}