Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit 6350687

Browse files
dereuromarkMapiiik
andauthored
Cake5 upgrade (#14)
* Init Cake5 upgrade * Use stable CakePHP 5.x by default * Fix up min stability --------- Co-authored-by: Mapiiik <[email protected]>
1 parent 463a6aa commit 6350687

File tree

5 files changed

+17
-43
lines changed

5 files changed

+17
-43
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
php-version: ['7.4', '8.2']
16+
php-version: ['8.1', '8.2']
1717
db-type: [sqlite, mysql, pgsql]
1818
prefer-lowest: ['']
1919
include:
20-
- php-version: '7.4'
20+
- php-version: '8.1'
2121
db-type: 'sqlite'
2222
prefer-lowest: 'prefer-lowest'
2323

@@ -55,7 +55,7 @@ jobs:
5555
5656
- name: Run PHPUnit
5757
run: |
58-
if [[ ${{ matrix.php-version }} == '7.4' && ${{ matrix.db-type }} == 'sqlite' ]]; then
58+
if [[ ${{ matrix.php-version }} == '8.1' && ${{ matrix.db-type }} == 'sqlite' ]]; then
5959
vendor/bin/phpunit --coverage-clover=coverage.xml
6060
else
6161
vendor/bin/phpunit
@@ -65,7 +65,7 @@ jobs:
6565
run: if ${{ matrix.prefer-lowest == 'prefer-lowest' }}; then vendor/bin/validate-prefer-lowest -m; fi
6666

6767
- name: Code Coverage Report
68-
if: success() && matrix.php-version == '7.4' && matrix.db-type == 'sqlite'
68+
if: success() && matrix.php-version == '8.1' && matrix.db-type == 'sqlite'
6969
uses: codecov/codecov-action@v3
7070

7171
validation:
@@ -78,7 +78,7 @@ jobs:
7878
- name: Setup PHP
7979
uses: shivammathur/setup-php@v2
8080
with:
81-
php-version: '7.4'
81+
php-version: '8.1'
8282
extensions: mbstring
8383
coverage: none
8484

.php_cs

-13
This file was deleted.

.styleci.yml

-14
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
[![Build Status](https://img.shields.io/travis/php-http/cakephp-adapter.svg?style=flat-square)](https://travis-ci.org/php-http/cakephp-adapter)
66
[![Code Coverage](https://img.shields.io/scrutinizer/coverage/g/php-http/cakephp-adapter.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/cakephp-adapter)
77
[![Quality Score](https://img.shields.io/scrutinizer/g/php-http/cakephp-adapter.svg?style=flat-square)](https://scrutinizer-ci.com/g/php-http/cakephp-adapter)
8-
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%207.4-8892BF.svg)](https://php.net/)
8+
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%208.1-8892BF.svg)](https://php.net/)
99
[![Total Downloads](https://img.shields.io/packagist/dt/php-http/cakephp-adapter.svg?style=flat-square)](https://packagist.org/packages/php-http/cakephp-adapter)
1010

1111
[HTTPlug](http://httplug.io) adapter for the [CakePHP](https://cakephp.org/) HTTP library.
1212

13-
This branch is for use with CakePHP 4.2+.
13+
This branch is for use with CakePHP 5.0+.
1414

1515
## Install
1616

composer.json

+10-9
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
{
22
"name": "php-http/cakephp-adapter",
3-
"description": "Cake adapter for PHP-HTTP",
3+
"description": "CakePHP adapter for PHP-HTTP",
44
"license": "MIT",
5-
"keywords": ["cakephp", "httplug", "http", "cake"],
5+
"keywords": [
6+
"cakephp",
7+
"httplug",
8+
"http",
9+
"cake"
10+
],
611
"homepage": "https://httplug.io",
712
"authors": [
813
{
@@ -11,10 +16,10 @@
1116
}
1217
],
1318
"require": {
14-
"php": ">=7.4",
19+
"php": ">=8.1",
1520
"php-http/httplug": "^2.0",
1621
"php-http/discovery": "^1.0",
17-
"cakephp/cakephp": "^4.2"
22+
"cakephp/cakephp": "^5.0"
1823
},
1924
"require-dev": {
2025
"phpunit/phpunit": "^9.5",
@@ -35,11 +40,6 @@
3540
"psr/http-client-implementation": "1.0",
3641
"php-http/client-implementation": "1.0"
3742
},
38-
"scripts": {
39-
"test": "vendor/bin/phpunit",
40-
"test-ci": "vendor/bin/phpunit --coverage-clover build/coverage.xml"
41-
},
42-
"prefer-stable": true,
4343
"scripts": {
4444
"test": "phpunit",
4545
"test-coverage": "phpunit --log-junit webroot/coverage/unitreport.xml --coverage-html webroot/coverage --coverage-clover webroot/coverage/coverage.xml",
@@ -50,6 +50,7 @@
5050
"cs-check": "phpcs --extensions=php",
5151
"cs-fix": "phpcbf --extensions=php"
5252
},
53+
"prefer-stable": true,
5354
"config": {
5455
"allow-plugins": {
5556
"dealerdirect/phpcodesniffer-composer-installer": true

0 commit comments

Comments
 (0)