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

added support for laravel 10 #44

Merged
merged 1 commit into from
Apr 23, 2023
Merged
Show file tree
Hide file tree
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
84 changes: 42 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
{
"name": "myckhel/laravel-paystack",
"description": "A description for laravel-paystack.",
"type": "package",
"license": "MIT",
"keywords": [
"laravel"
],
"authors": [
{
"name": "myckhel",
"email": "myckhel1@hotmail.com"
}
],
"require": {
"illuminate/support": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Myckhel\\Paystack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myckhel\\Paystack\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Myckhel\\Paystack\\PaystackServiceProvider"
],
"aliases": {
"Paystack": "Myckhel\\Paystack\\Facades\\Paystack"
}
}
},
"require-dev": {
"orchestra/testbench": "^6.0"
"name": "myckhel/laravel-paystack",
"description": "A description for laravel-paystack.",
"type": "package",
"license": "MIT",
"keywords": [
"laravel"
],
"authors": [
{
"name": "myckhel",
"email": "myckhel1@hotmail.com"
}
}
],
"require": {
"illuminate/support": "^7.0|^8.0|^9.0|^10.0"
},
"autoload": {
"psr-4": {
"Myckhel\\Paystack\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Myckhel\\Paystack\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Myckhel\\Paystack\\PaystackServiceProvider"
],
"aliases": {
"Paystack": "Myckhel\\Paystack\\Facades\\Paystack"
}
}
},
"require-dev": {
"orchestra/testbench": "^6.0"
}
}
4 changes: 3 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ The package will automatically register a service provider.

You need to publish the configuration file:

```php artisan vendor:publish --provider="Myckhel\Paystack\PaystackServiceProvider"```
```php
php artisan vendor:publish --provider="Myckhel\Paystack\PaystackServiceProvider"
```

### Publish config
This is the default content of the config file ```paystack.php```:
Expand Down