Skip to content

Commit

Permalink
CakePHP 4.0 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
hakito committed Jun 22, 2020
1 parent 0a4ddb4 commit d5ce1be
Show file tree
Hide file tree
Showing 13 changed files with 693 additions and 687 deletions.
21 changes: 11 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
tmp/*
[Cc]onfig/core.php
[Cc]onfig/database.php
app/tmp/*
app/[Cc]onfig/core.php
app/[Cc]onfig/database.php
!empty
vendor/
*.lock
build/
tmp/*
[Cc]onfig/core.php
[Cc]onfig/database.php
app/tmp/*
app/[Cc]onfig/core.php
app/[Cc]onfig/database.php
!empty
vendor/
*.lock
build/
.phpunit.result.cache
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"intelephense.environment.phpVersion": "7.2.0"
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# CakePHP-PayPalRest-Plugin

Simple PayPal plugin for CakePHP 3.x using the REST api.
Simple PayPal plugin for CakePHP 4.x using the REST api.

## Installation

Expand Down
68 changes: 34 additions & 34 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
{
"name": "hakito/cakephp-paypal-rest-plugin",
"type": "cakephp-plugin",
"description": "PayPal plugin for CakePHP using the REST api",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin",
"keywords": ["paypal", "rest", "cakephp", "payment"],
"license": "GPL-2.0",
"authors": [
{
"name": "Gerd Katzenbeisser",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"PayPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayPal\\Test\\": "tests/"
}
},
"require": {
"cakephp/cakephp": "^3.7",
"paypal/rest-api-sdk-php" : ">=1.3.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"extra": {
"installer-name": "PayPal"
}
}
{
"name": "hakito/cakephp-paypal-rest-plugin",
"type": "cakephp-plugin",
"description": "PayPal plugin for CakePHP using the REST api",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin",
"keywords": ["paypal", "rest", "cakephp", "payment"],
"license": "GPL-2.0",
"authors": [
{
"name": "Gerd Katzenbeisser",
"homepage": "https://github.com/hakito/CakePHP-PayPalRest-Plugin/graphs/contributors"
}
],
"autoload": {
"psr-4": {
"PayPal\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PayPal\\Test\\": "tests/"
}
},
"require": {
"cakephp/cakephp": "^4.0",
"paypal/rest-api-sdk-php" : ">=1.3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
},
"extra": {
"installer-name": "PayPal"
}
}
Loading

0 comments on commit d5ce1be

Please sign in to comment.