Skip to content

Commit 978763c

Browse files
committed
updated to php 8.0
1 parent d83929c commit 978763c

24 files changed

+137
-902
lines changed

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
language: php
22
php:
3-
- 7.0
4-
- 7.1
5-
- 7.2
3+
- 8.0
4+
- 8.1
65
before_script:
76
- composer self-update
87
- composer install

CHANGELOG.md

Lines changed: 18 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1919

2020
### Added
2121

22-
* added RealNumber
23-
* added [this](CHANGELOG.md) changelog
22+
### Changed
23+
24+
## [1.10.0](https://github.com/bazzline/php_component_toolbox/tree/1.10.0) - released at 2022-11-23
25+
26+
### Added
27+
28+
* Added RealNumber
29+
* Added [this](CHANGELOG.md) changelog
2430

2531
### Changed
2632

27-
* dropped support for php below 7.0
28-
* fixed [issue/2](https://github.com/bazzline/php_component_toolbox/issues/2)
29-
* minimum and maximum can now be equal
30-
* step size can now be greater than the difference between provided minimum and maximum
31-
* fixed [issue/3](https://github.com/bazzline/php_component_toolbox/issues/3)
32-
* each chunk item will be provided only once
33-
* updated code base to php 7.0
34-
* added php 7.1 to travis
35-
* added php 7.2 to travis
33+
* Removed `Collection\Chunk` and `Collection\ChunkItertor` since it is not used
34+
* Dropped support for php below 8.0
35+
* Fixed [issue/2](https://github.com/bazzline/php_component_toolbox/issues/2)
36+
* Minimum and maximum can now be equal
37+
* Step size can now be greater than the difference between provided minimum and maximum
38+
* Fixed [issue/3](https://github.com/bazzline/php_component_toolbox/issues/3)
39+
* Each chunk item will be provided only once
40+
* Updated code base to php 8.0
41+
* Added php 8.0 to travis
42+
* Added php 8.1 to travis
3643

3744
## [1.9.0](https://github.com/bazzline/php_component_toolbox/tree/1.9.0) - released at 06.03.2016
3845

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
# Full Stop
2-
3-
I still like the idea but there is currently no use case to develop it anymore.
4-
51
# Toolbox Component for PHP
62

73
This project aims to deliver an easy to use and free as in freedom php component full of toolbox things you need on your daily work with php.
@@ -20,8 +16,8 @@ git clone https://github.com/bazzline/php_component_toolbox .
2016

2117
## With [Packagist](https://packagist.org/packages/net_bazzline/php_component_toolbox)
2218

23-
```
24-
composer require net_bazzline/php_component_toolbox:dev-master
19+
```bash
20+
composer require net_bazzline/php_component_toolbox:dev-master
2521
```
2622

2723
# Available Sections

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
"type": "library",
1818
"minimum-stability": "dev",
1919
"require": {
20-
"php": ">=7.0.0"
20+
"php": ">=8.0"
2121
},
2222
"require-dev": {
23-
"phpunit/phpunit": "~6.0"
23+
"phpunit/phpunit": "~9.0"
2424
},
2525
"license": "LGPL-3.0",
2626
"authors": [

phpunit.xml.dist

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,9 @@
1-
<phpunit bootstrap="test/bootstrap.php"
2-
cacheTokens="false"
3-
colors="true"
4-
convertErrorsToExceptions="true"
5-
convertNoticesToExceptions="true"
6-
convertWarningsToExceptions="true"
7-
stopOnError="true"
8-
stopOnFailure="true"
9-
stopOnIncomplete="false"
10-
stopOnSkipped="false">
11-
12-
<testsuites>
13-
<testsuite name="Locator Component Test Suite">
14-
<directory>test/</directory>
15-
</testsuite>
16-
</testsuites>
1+
<?xml version="1.0"?>
2+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="test/bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="true" stopOnFailure="true" stopOnIncomplete="false" stopOnSkipped="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3+
<coverage/>
4+
<testsuites>
5+
<testsuite name="Locator Component Test Suite">
6+
<directory>test/</directory>
7+
</testsuite>
8+
</testsuites>
179
</phpunit>

source/Collection/Chunk/Chunk.php

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)