-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 975 Bytes
/
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
{
"name": "thyyppa/laravel-fluent-fm",
"description": "A Laravel package for FileMaker Server's Data API using a fluent query builder style interface.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Travis Hyyppä",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"thyyppa/fluent-fm": "^1.2.4"
},
"require-dev": {
"phpunit/phpunit": "8.5.5",
"orchestra/testbench": "^3.5 || ^4.0",
"nunomaduro/collision": "v3.0.1"
},
"autoload": {
"psr-4": {
"Hyyppa\\LaravelFluentFM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Hyyppa\\LaravelFluentFM\\Providers\\LaravelFluentFMServiceProvider"
],
"aliases": {
"FluentFM": "Hyyppa\\LaravelFluentFM\\Facades\\FluentFM"
}
}
}
}