Skip to content

Commit

Permalink
Dropped php 7.0 & 7.1 support (#13)
Browse files Browse the repository at this point in the history
* reduced number of supported php versions

* Dropped php 7.0 and 7.1 support
  • Loading branch information
norberttech authored Nov 23, 2019
1 parent 6ee3dbd commit 06afb73
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest, macOS-latest]
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4']
php-versions: ['7.2', '7.3', '7.4']

steps:
- uses: actions/checkout@master
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# PHP To String

Simple library that converts PHP values into strings.

Status:

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

## Installation

Add to your composer.json

```
require: {
"coduo/php-to-string": "2.0.*"
}
composer require coduo/php-to-string
```

## Usage
Expand All @@ -25,7 +23,7 @@ Supported types:
* integer
* float/double
* object
* callback
* callable
* array
* resource

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": "^7.0",
"php": "^7.2",
"symfony/intl": "^3.4|^4.0|^5.0"
},
"require-dev": {
Expand Down

0 comments on commit 06afb73

Please sign in to comment.