Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
NafezlyDotCom committed Sep 27, 2022
1 parent c04105f commit bca315d
Show file tree
Hide file tree
Showing 12 changed files with 5,303 additions and 481 deletions.
17 changes: 16 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,16 @@
/vendor/
/node_modules
/public/build
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
Homestead.json
Homestead.yaml
auth.json
npm-debug.log
yarn-error.log
/.idea
/.vscode
66 changes: 38 additions & 28 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,41 @@
{
"name": "nafezly/payments",
"license": "MIT",
"description":"paymant helper for Paypal,Paymob,Kashier,Hyperpay,Fawry",
"autoload": {
"psr-4": {
"Nafezly\\Payments\\": "src/"
}
},
"require": {
"php": ">=7.0",
"laravel/framework": ">=6.0",
"paypal/paypal-checkout-sdk": "1.0.2"
},
"authors": [
{
"name": "nafezly.com",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Nafezly\\Payments\\NafezlyPaymentsServiceProvider"
],
"aliases": {
"NafezlyPayments": "Nafezly\\Payments\\Facades"
}
}
"name": "nafezly/payments",
"license": "MIT",
"description": "Payment helper for Paypal, Paymob, Kashier, Hyperpay and Fawry",
"keywords": [
"online payments",
"paypal",
"paymob",
"kashier",
"hyperpay",
"fawry"
],
"autoload": {
"psr-4": {
"Nafezly\\Payments\\": "src/"
}
},
"require": {
"php": ">=7.0",
"laravel/framework": ">=6.0",
"paypal/paypal-checkout-sdk": "1.0.2",
"ext-json": "*",
"ext-curl": "*"
},
"authors": [
{
"name": "nafezly.com",
"email": "[email protected]"
}
],
"extra": {
"laravel": {
"providers": [
"Nafezly\\Payments\\NafezlyPaymentsServiceProvider"
],
"aliases": {
"NafezlyPayments": "Nafezly\\Payments\\Facades"
}
}
}
}
Loading

0 comments on commit bca315d

Please sign in to comment.