Skip to content

Commit

Permalink
Merge pull request #21 from ahoshaiyan/add-new-payment-params
Browse files Browse the repository at this point in the history
Add new payment source parameters and Apple Pay source.
  • Loading branch information
ahoshaiyan authored Nov 12, 2021
2 parents 8bf9459 + b83f476 commit 7ffa2d4
Show file tree
Hide file tree
Showing 13 changed files with 1,458 additions and 482 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2020 Moyasar
Copyright (c) 2021 Moyasar

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
147 changes: 74 additions & 73 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,78 +1,79 @@
{
"name": "moyasar/moyasar",
"description": "PHP/Laravel wrapper library for Moyasar payment services",
"keywords": [
"moyasar",
"payment",
"invoice",
"pay",
"refund",
"visa",
"mada",
"master",
"card",
"sadad",
"laravel",
"apple",
"pay",
"capture",
"void",
"credit"
],
"type": "library",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Ali Alhoshaiyan",
"email": "alialhoshaiyan@gmail.com"
"name": "moyasar/moyasar",
"description": "PHP/Laravel wrapper library for Moyasar payment services",
"keywords": [
"moyasar",
"payment",
"invoice",
"pay",
"refund",
"visa",
"mada",
"master",
"card",
"sadad",
"laravel",
"apple",
"pay",
"capture",
"void",
"credit"
],
"type": "library",
"license": "MIT",
"prefer-stable": true,
"minimum-stability": "dev",
"authors": [
{
"name": "Ali Alhoshaiyan",
"email": "alialhoshaiyan@gmail.com"
},
{
"name": "Sohib H Algotimel",
"email": "s@sgh.sa",
"homepage": "https://sgh.sa"
},
{
"name": "Moyasar Development Team",
"email": "developers@moyasar.com",
"homepage": "https://moyasar.com/"
}
],
"require": {
"php": "^7.2|^8.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-json": "*"
},
{
"name": "Sohib H Algotimel",
"email": "s@sgh.sa",
"homepage": "https://sgh.sa"
"require-dev": {
"phpunit/phpunit": "^8.5.19|^9.5.8",
"mockery/mockery": "^1.2.4"
},
{
"name": "Moyasar Development Team",
"email": "developers@moyasar.com",
"homepage": "https://moyasar.com/"
}
],
"require": {
"guzzlehttp/guzzle": "^6.3|^7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.27",
"mockery/mockery": "1.2.4"
},
"suggest": {
"laravel/framework": "Allows Moyasar payment services to be auto injected into current app container"
},
"autoload": {
"psr-4": {
"Moyasar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"aliases": {
"Payment": "Moyasar\\Facades\\Payment",
"Invoice": "Moyasar\\Facades\\Invoice"
},
"providers": [
"Moyasar\\Providers\\LaravelServiceProvider"
]
"suggest": {
"laravel/framework": "Allows Moyasar payment services to be auto injected into current app container"
},
"autoload": {
"psr-4": {
"Moyasar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"aliases": {
"Payment": "Moyasar\\Facades\\Payment",
"Invoice": "Moyasar\\Facades\\Invoice"
},
"providers": [
"Moyasar\\Providers\\LaravelServiceProvider"
]
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:ci": "composer test -- --verbose --coverage-text --coverage-clover=coverage.xml"
}
}
Loading

0 comments on commit 7ffa2d4

Please sign in to comment.