-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
101 lines (101 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "inter-mediator/fmdataapi",
"version": "32",
"time": "2024-09-16",
"repositories": [
{
"type": "git",
"url": "https://github.com/msyk/FMDataAPI.git"
}
],
"prefer-stable": true,
"require": {
"php": ">=8.1",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "^2.0"
},
"autoload": {
"psr-4": {
"INTERMediator\\FileMakerServer\\RESTAPI\\": "src/"
},
"classmap": [
"test/FMDataAPIUnitTest.php",
"test/TestProvider.php"
]
},
"description": "FMDataAPI is the class library in PHP for accessing FileMaker database with FileMaker Data API.",
"type": "library",
"keywords": [
"INTER-Mediator",
"FileMaker",
"REST",
"API"
],
"homepage": "https://github.com/msyk/FMDataAPI",
"license": "MIT",
"authors": [
{
"name": "Masayuki Nii (Auther)",
"homepage": "http://msyk.net/"
},
{
"name": "Atsushi Matsuo (Contributor)"
},
{
"name": "darnel (Contributor)"
},
{
"name": "Craig Smith (Contributor)"
},
{
"name": "Bernhard Schulz (Contributor)"
},
{
"name": "montaniasystemab (Contributor)"
},
{
"name": "Rickard Andersson (Contributor)"
},
{
"name": "Julien @AnnoyingTechnology (Contributor)"
},
{
"name": "Tom Kuijer (Contributor)"
},
{
"name": "Thijs Meijer (Contributor)"
},
{
"name": "Patrick Janser (Contributor)"
},
{
"name": "Roger Engström (Contributor)"
},
{
"name": "Stathis Askaridis (Contributor)"
}
],
"support": {
"community-jp": "https://www.facebook.com/groups/233378356708157/",
"community-en": "https://www.facebook.com/groups/254446237922985/",
"source": "https://github.com/msyk/FMDataAPI.git",
"manual": "http://inter-mediator.info/FMDataAPI/namespaces/INTERMediator.FileMakerServer.RESTAPI.html"
},
"scripts": {
"test": [
"./vendor/bin/phpunit --bootstrap ./vendor/autoload.php --configuration ./test/phpunit.xml ./test/FMDataAPIUnitTest.php"
],
"doc": [
"./vendor/bin/phpdoc -f ./src/FMDataAPI.php -t ../INTER-Mediator_Documents/FMDataAPI"
]
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
}
}