Skip to content

Commit

Permalink
Drop support for PHP 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredup committed Nov 6, 2023
1 parent 773dd92 commit 4f3f6e0
Show file tree
Hide file tree
Showing 36 changed files with 42 additions and 653 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ on:
push:
branches:
- master
- 1.6.x
pull_request: ~

env:
Expand All @@ -19,9 +18,6 @@ jobs:
fail-fast: false
matrix:
include:
- php: 7.2
- php: 7.3
- php: 7.4
- php: 8.0
- php: 8.1

Expand Down Expand Up @@ -60,7 +56,7 @@ jobs:
fail-fast: false
matrix:
include:
- php: 7.2
- php: 8.0

steps:
- name: Checkout
Expand Down Expand Up @@ -96,7 +92,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [7.4]
php: [8.0, 8.1]

steps:
- name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .php-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8.0
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 2.0.0 (YYYY-mm-dd)

* drop support for PHP 7.x

## 1.5.0 (2018-01-09)

* add tests for encoded requests
Expand Down
2 changes: 2 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 2.0.0 - TBD

* Dropped support for PHP 7.x

## 1.5.0

* Dropped PHP 5.x support
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"alcohol/iso4217": "^3.1 || ^4.0",
"php": "^8.0",
"alcohol/iso4217": "^4.0",
"payum/iso4217": "~1.0",
"php-http/message": "^1.0",
"php-http/client-implementation": "^1.0",
Expand Down
42 changes: 0 additions & 42 deletions src/Payum/AuthorizeNet/Aim/.travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/Payum/AuthorizeNet/Aim/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"payum/core": "^1.5",
"payum/core": "2.0.x-dev",
"authorizenet/authorizenet": "^1.8.1"
},
"require-dev": {
Expand All @@ -37,7 +37,7 @@
"target-dir": "Payum/AuthorizeNet/Aim",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
"dev-master": "2.0.x-dev"
}
}
}
41 changes: 0 additions & 41 deletions src/Payum/Be2Bill/.travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/Payum/Be2Bill/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"payum/core": "^1.5"
"payum/core": "2.0.x-dev"
},
"require-dev": {
"payum/core": "^1.5",
Expand All @@ -37,7 +37,7 @@
"target-dir": "Payum/Be2Bill",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
"dev-master": "2.0.x-dev"
}
}
}
40 changes: 0 additions & 40 deletions src/Payum/Core/.travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/Payum/Core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
}
],
"require": {
"php": "^7.2 || ^8.0",
"php": "^8.0",
"alcohol/iso4217": "^3.1 || ^4.0",
"payum/iso4217": "^1.0",
"php-http/message": "^1.0",
Expand Down Expand Up @@ -95,7 +95,7 @@
"target-dir": "Payum/Core",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
"dev-master": "2.0.x-dev"
}
}
}
40 changes: 0 additions & 40 deletions src/Payum/Klarna/Checkout/.travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/Payum/Klarna/Checkout/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
],
"require": {
"payum/core": "^1.5",
"payum/core": "2.0.x-dev",
"klarna/checkout": "^1.1|^2.0"
},
"require-dev": {
Expand All @@ -40,7 +40,7 @@
"target-dir": "Payum/Klarna/Checkout",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
"dev-master": "2.0.x-dev"
}
}
}
42 changes: 0 additions & 42 deletions src/Payum/Klarna/Invoice/.travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions src/Payum/Klarna/Invoice/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
],
"require": {
"payum/core": "^1.5",
"payum/core": "2.0.x-dev",
"fp/klarna-invoice": "0.1.*"
},
"require-dev": {
Expand All @@ -40,7 +40,7 @@
"target-dir": "Payum/Klarna/Invoice",
"extra": {
"branch-alias": {
"dev-master": "1.6-dev"
"dev-master": "2.0.x-dev"
}
}
}

0 comments on commit 4f3f6e0

Please sign in to comment.