first commit

This commit is contained in:
Mohamed Youssef
2026-03-25 16:15:28 +02:00
parent 9f49ed54ec
commit 8138eb509d
15 changed files with 1045 additions and 0 deletions

28
composer.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "mydevpro/upayments",
"description": "UPayments integration for laravel 8",
"license": "MIT",
"autoload": {
"psr-4": {
"Mydevpro\\Upayments\\": "src/"
}
},
"authors": [
{
"name": "Mohamed Youssef",
"email": "mydevpro1@gmail.com"
}
],
"extra": {
"laravel": {
"providers": [
"Mydevpro\\Upayments\\PaymentServiceProvider"
],
"aliases": {
"Upayments": "Mydevpro\\Upayments\\Facade"
}
}
},
"minimum-stability": "stable",
"require": {}
}