Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please update composer.json to use this package for laravel 6.* and 7.* #14

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "netshell/paypal",
"name": "mehedi-iitdu/laravel-paypal",
"description": "Laravel-Paypal is simple package help you process direct credit card payments, stored credit card payments and PayPal account payments with your Laravel 5 projects using paypal REST API SDK.",
"license": "BSD-2-Clause",
"authors": [
Expand All @@ -9,18 +9,20 @@
}
],
"require": {
"php": ">=5.3.0",
"illuminate/support": "~5.0",
"ext-curl": "*",
"ext-json": "*",
"paypal/rest-api-sdk-php": "1.13.0"
"php": "^5.4.0|^7.0",
"illuminate/support": "6.*",
"guzzlehttp/guzzle": "5.*|6.*",
"paypal/rest-api-sdk-php": "dev-master"
},
"require-dev":{
"phpspec/phpspec": "~2.0"
"require-dev": {
"phpunit/phpunit" : "4.*",
"scrutinizer/ocular": "~1.1",
"satooshi/php-coveralls": "^0.7.0",
"mockery/mockery": ">=0.7.2"
},
"autoload": {
"psr-0": {
"Netshell\\Paypal": "src/"
"psr-4": {
"Netshell\\Paypal\\": "src/"
}
},
"minimum-stability": "dev"
Expand Down