-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
35 lines (35 loc) · 916 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
{
"name": "thyyppa/fluent-fm",
"description": "A PHP package for FileMaker Server's Data API using a fluent query builder style interface.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Travis Hyyppä",
"email": "travishyyppa@gmail.com"
}
],
"require": {
"php": "^7.2 || ^8.0 || ^8.1",
"guzzlehttp/guzzle": "^7.0.1",
"ext-json": "*",
"ramsey/uuid": "^3.8 || ^4.0"
},
"require-dev": {
"phpunit/phpunit": "8.5.5",
"symfony/var-dumper": "^4.1"
},
"suggest": {
"ext-apcu": "*"
},
"autoload": {
"psr-4": {
"Hyyppa\\FluentFM\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}