Skip to content

Commit a5e684f

Browse files
committed
Ver.27: Dropped PHP5, and PHP 7.1 or later required.
1 parent 044d857 commit a5e684f

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# FMDataAPI Ver.26 [![Build Status](https://github.com/msyk/FMDataAPI/actions/workflows/php.yml/badge.svg)](https://github.com/msyk/FMDataAPI/actions/workflows/php.yml)
1+
# FMDataAPI Ver.27 [![Build Status](https://github.com/msyk/FMDataAPI/actions/workflows/php.yml/badge.svg)](https://github.com/msyk/FMDataAPI/actions/workflows/php.yml)
22

33
by Masayuki Nii (nii@msyk.net)
44

@@ -64,7 +64,7 @@ FMDataAPI has "composer.json," so you can add your composer.json file in your pr
6464
...
6565
"require": {
6666
...
67-
"inter-mediator/fmdataapi":"26"
67+
"inter-mediator/fmdataapi":"27"
6868
} ...
6969
```
7070

@@ -164,6 +164,8 @@ MIT License
164164
Add methods(getFirstRecord, getLastRecord, getRecords) to the FileMakerRelation class.
165165
- 2022-03-26: [Ver.26]
166166
Add methods(setFieldHTMLEncoding, getFieldHTMLEncoding) to the FMDataAPI class. These is going to use for compatibility mode of FileMaker API for PHP.
167+
- 2022-06-06: [Ver.27]
168+
Dropped the support of PHP5, minimal version is PHP 7.1, but 7.2 or later is recommended.
167169

168170
## API Differences between ver.8 and 7.
169171
### FMDataAPI class

src/FMDataAPI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @link https://github.com/msyk/FMDataAPI GitHub Repository
1414
* @property-read FileMakerLayout $<<layout_name>> Returns the FileMakerLayout object from the layout named with the property.
1515
* If the layout doesn't exist, no error arises here. Any errors might arise on methods of FileMakerLayout class.
16-
* @version 26
16+
* @version 27
1717
* @author Masayuki Nii <nii@msyk.net>
1818
* @copyright 2017-2022 Masayuki Nii (Claris FileMaker is registered trademarks of Claris International Inc. in the U.S. and other countries.)
1919
* @source 1 100000 The source code.

src/Supporting/CommunicationProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
* @package INTER-Mediator\FileMakerServer\RESTAPI
99
* @link https://github.com/msyk/FMDataAPI GitHub Repository
10-
* @version 26
10+
* @version 27
1111
* @author Masayuki Nii <nii@msyk.net>
1212
* @copyright 2017-2022 Masayuki Nii (Claris FileMaker is registered trademarks of Claris International Inc. in the U.S. and other countries.)
1313
*/

src/Supporting/FileMakerLayout.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @package INTER-Mediator\FileMakerServer\RESTAPI
1212
* @link https://github.com/msyk/FMDataAPI GitHub Repository
13-
* @version 26
13+
* @version 27
1414
* @author Masayuki Nii <nii@msyk.net>
1515
* @copyright 2017-2022 Masayuki Nii (Claris FileMaker is registered trademarks of Claris International Inc. in the U.S. and other countries.)
1616
*/

src/Supporting/FileMakerRelation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @property string $<<field_name>> The field value named as the property name.
1515
* @property FileMakerRelation $<<portal_name>> FileMakerRelation object associated with the property name.
1616
* The table occurrence name of the portal can be the 'portal_name,' and also the object name of the portal.
17-
* @version 26
17+
* @version 27
1818
* @author Masayuki Nii <nii@msyk.net>
1919
* @copyright 2017-2022 Masayuki Nii (Claris FileMaker is registered trademarks of Claris International Inc. in the U.S. and other countries.)
2020
*/

0 commit comments

Comments
 (0)