Skip to content

Commit 06afb73

Browse files
authoredNov 23, 2019
Dropped php 7.0 & 7.1 support (#13)
* reduced number of supported php versions * Dropped php 7.0 and 7.1 support
1 parent 6ee3dbd commit 06afb73

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed
 

‎.github/workflows/testsuite.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
matrix:
1818
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
19-
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4']
19+
php-versions: ['7.2', '7.3', '7.4']
2020

2121
steps:
2222
- uses: actions/checkout@master

‎README.md

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# PHP To String
22

3+
Simple library that converts PHP values into strings.
4+
35
Status:
46

57
* ![Build Status](https://github.com/coduo/php-to-string/workflows/Tests/badge.svg?branch=master) - master
@@ -9,12 +11,8 @@ Simple library that allows you to cast any php value into string
911

1012
## Installation
1113

12-
Add to your composer.json
13-
1414
```
15-
require: {
16-
"coduo/php-to-string": "2.0.*"
17-
}
15+
composer require coduo/php-to-string
1816
```
1917

2018
## Usage
@@ -25,7 +23,7 @@ Supported types:
2523
* integer
2624
* float/double
2725
* object
28-
* callback
26+
* callable
2927
* array
3028
* resource
3129

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616
],
1717
"require": {
18-
"php": "^7.0",
18+
"php": "^7.2",
1919
"symfony/intl": "^3.4|^4.0|^5.0"
2020
},
2121
"require-dev": {

0 commit comments

Comments
 (0)