Installation & setup
On this page
laravel-event-sourcing can be installed via composer:
composer require ghostscypher/laravel-mpesa
To publish all the related files run:
php artisan mpesa:install
This will publish
- config file in your config directory. i.e.
config/mpesa.php
- migration file for the mpesa transactions table. i.e.
database/migrations/2024_08_01_000000_create_mpesa_callbacks_table.php
database/migrations/2024_08_27_000000_create_mpesa_logs_table.php
database/migrations/2024_08_27_000000_create_mpesa_tokens_table.php
- controller file in your app directory. i.e.
app/Http/Controllers/LaravelMpesa/MpesaController.php
#Configuration
The default configuration file looks like
<?php return [ // Definition of terms // B2C - Business to Customer // B2B - Business to Business // C2B - Customer to Business /*******************Start of Mpesa options************************************/ // Contains options needed when making API calls to the mpesa API // Note: not all options are needed for all API calls, some are only needed // for specific API calls. Moreover, the methods in the package will have // a way to specify the options that are needed for that specific API call. // This is just a way to set the default options that will be used when making // the API calls. /* |-------------------------------------------------------------------------- | Environments |-------------------------------------------------------------------------- | | Default service to be used (sandbox or production) | */ 'env' => env('MPESA_ENV', 'sandbox'), /* |-------------------------------------------------------------------------- | Consumer Key |-------------------------------------------------------------------------- | | The consumer key provided by safaricom | */ 'consumer_key' => env('MPESA_CONSUMER_KEY', ''), /* |-------------------------------------------------------------------------- | Consumer Secret |-------------------------------------------------------------------------- | | The consumer secret provided by safaricom | */ 'consumer_secret' => env('MPESA_CONSUMER_SECRET', ''), /* |-------------------------------------------------------------------------- | Passkey |-------------------------------------------------------------------------- | | The passkey provided by safaricom for lipa na mpesa online AKA STK push | */ 'passkey' => env('MPESA_PASSKEY', ''), /* |-------------------------------------------------------------------------- | Shortcode |-------------------------------------------------------------------------- | | The shortcode provided by safaricom, i.e. the paybill number or till number | that will be used to receive payments | */ 'shortcode' => env('MPESA_SHORTCODE', '174379'), /* |-------------------------------------------------------------------------- | Initiator Name |-------------------------------------------------------------------------- | | The name of the initiator, usually the shortcode name or the company name | */ 'initiator_name' => env('MPESA_INITIATOR_NAME', ''), /* |-------------------------------------------------------------------------- | Initiator Password |-------------------------------------------------------------------------- | | The password of the initiator, usually the shortcode password or the company password | */ 'initiator_password' => env('MPESA_INITIATOR_PASSWORD', ''), /* |-------------------------------------------------------------------------- | Partner Name |-------------------------------------------------------------------------- | | This is the organization Friendly name used by the vendor as known by the Merchant. | */ 'partner_name' => env('MPESA_PARTNER_NAME', ''), /* |-------------------------------------------------------------------------- | B2C Shortcode |-------------------------------------------------------------------------- | | The shortcode that will be used to send money to customers | */ 'b2c_shortcode' => env('MPESA_B2C_SHORTCODE', '600000'), /* |-------------------------------------------------------------------------- | STK Push Callback URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction is complete | for a STK push transaction / lipa na mpesa online transaction | */ 'stk_push_callback_url' => env('MPESA_STK_PUSH_CALLBACK_URL', ''), /* |-------------------------------------------------------------------------- | C2B Validation URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will use to validate the transaction, it will | be used to validate the transaction before it is confirmed, this is useful | when you want to validate the transaction before it is confirmed e.g. | checking if the account number is valid etc. | | Note: Validation will need to be enabled on the mpesa admin portal, contact | customer support to help in enabling it. | */ 'c2b_validation_url' => env('MPESA_C2B_VALIDATION_URL', ''), /* |-------------------------------------------------------------------------- | C2B Confirmation URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction is confirmed | and the user has already paid. | */ 'c2b_confirmation_url' => env('MPESA_C2B_CONFIRMATION_URL', ''), /* |-------------------------------------------------------------------------- | B2C Result URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction is complete | for a B2C transaction | */ 'b2c_result_url' => env('MPESA_B2C_RESULT_URL', ''), /* |-------------------------------------------------------------------------- | B2C Timeout URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction times out | for a B2C transaction | */ 'b2c_timeout_url' => env('MPESA_B2C_TIMEOUT_URL', ''), /* |-------------------------------------------------------------------------- | B2B Result URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction is complete | for a B2B transaction | */ 'b2b_result_url' => env('MPESA_B2B_RESULT_URL', ''), /* |-------------------------------------------------------------------------- | B2B Timeout URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction times out | for a B2B transaction | */ 'b2b_timeout_url' => env('MPESA_B2B_TIMEOUT_URL', ''), /* |-------------------------------------------------------------------------- | B2B STK callback URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call for the STK push callback for a B2B transaction | */ 'b2b_stk_callback_url' => env('MPESA_B2B_STK_CALLBACK_URL', ''), /* |-------------------------------------------------------------------------- | Status Result URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when you request for the status | of a transaction, useful for checking the status of a transaction in the | case confirmation was not received. | */ 'status_result_url' => env('MPESA_STATUS_RESULT_URL', ''), /* |-------------------------------------------------------------------------- | Status Timeout URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the transaction status request | times out, useful for handling the timeout of a transaction status request | */ 'status_timeout_url' => env('MPESA_STATUS_TIMEOUT_URL', ''), /* |-------------------------------------------------------------------------- | Reversal Result URL |-------------------------------------------------------------------------- | This is the URL that safaricom will call when you request for a reversal | of a transaction. | */ 'reversal_result_url' => env('MPESA_REVERSAL_RESULT_URL', ''), /* |-------------------------------------------------------------------------- | Reversal Timeout URL |-------------------------------------------------------------------------- | This is the URL that safaricom will call when the reversal request times out | */ 'reversal_timeout_url' => env('MPESA_REVERSAL_TIMEOUT_URL', ''), /* |-------------------------------------------------------------------------- | Balance Result URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when you request for the balance | */ 'balance_result_url' => env('MPESA_BALANCE_STATUS_RESULT_URL', ''), /* |-------------------------------------------------------------------------- | Balance Timeout URL |-------------------------------------------------------------------------- | | This is the URL that safaricom will call when the balance request times out | */ 'balance_timeout_url' => env('MPESA_BALANCE_STATUS_TIMEOUT_URL', ''), /* |-------------------------------------------------------------------------- | Billmanager Callback URL |-------------------------------------------------------------------------- | | This is the URL that bill manager APIs use as callback, check documentation | for more usage. https://developer.safaricom.co.ke/APIs/BillManager | */ 'bill_manager_callback_url' => env('MPESA_BILL_MANAGER_CALLBACK_URL', ''), /*******************End of Mpesa options************************************/ /*******************Start of customization options************************************/ // This is the customization options for the package, it allows you to customize what // you want to use in the package, e.g. models, controllers, views etc. // It also enables you to specify features that you want to enable or disable since // not all features are needed in all applications. // This is useful when you want to customize the package to fit your needs. /* |-------------------------------------------------------------------------- | Models |-------------------------------------------------------------------------- | | This is a list of models that are used by the package, it's usefull especially | when in need of customizing the models to add more fields or relationships etc. | Moreover, it's also useful when in a multi-tenant application where you need | to have different models for different tenants. | */ 'models' => [ 'token' => \Ghostscypher\Mpesa\Models\MpesaToken::class, // The model for the mpesa tokens, most of the time you won't need to change this 'log' => \Ghostscypher\Mpesa\Models\MpesaLog::class, // The model for the logs, HTTP requests and responses, 'callback_log' => \Ghostscypher\Mpesa\Models\MpesaCallback::class, // The model for the mpesa callbacks, ], /* |-------------------------------------------------------------------------- | Features |-------------------------------------------------------------------------- | | This is a list of features that affect how the package works, it's useful when | you want to enable or disable some features, e.g. you may want to disable the | STK push feature if you are not using it in your application. | */ 'features' => [ /** * Enable this to store tokens in the database, by default it's enabled */ 'store_tokens' => env('MPESA_FEATURE_STORE_TOKENS', true), /** * Enable logging of the transactions, this will store all the requests and responses in the database, * useful for debugging, by default this is enabled */ 'enable_logging' => env('MPESA_FEATURE_ENABLE_LOGGING', true), /** * Enable logging of any callbacks, this will store all the callbacks in the database, * useful for debugging, by default this is enabled. * * Note: This will only work if you are using the package to handle the callbacks, * if you are handling the callbacks yourself, then you will need to log or handle the callbacks yourself. */ 'enable_callback_logging' => env('MPESA_FEATURE_ENABLE_CALLBACK_LOGGING', true), /** * Register the routes for the mpesa callback, this will register the routes for the mpesa callback */ 'register_routes' => env('MPESA_FEATURE_REGISTER_ROUTES', true), ], /* |-------------------------------------------------------------------------- | Log Listeners |-------------------------------------------------------------------------- | | This is a list of listeners that will be used to log the requests and responses | of the API calls, this is useful when you want to log the requests and responses | for debugging purposes. | | Note: This will be used only if the feature for logging is enabled | */ 'listeners' => [ 'log_request' => \Ghostscypher\Mpesa\Listeners\LogRequestSending::class, // The listener for logging the request sending 'log_response' => \Ghostscypher\Mpesa\Listeners\LogResponseReceived::class, // The listener for logging the response received ], /* |-------------------------------------------------------------------------- | Callback controller |-------------------------------------------------------------------------- | | This is the controller that will be used to handle the mpesa callbacks, you can | change this to your own controller if you want to customize the callbacks. | */ 'controller' => \App\Http\Controllers\LaravelMpesa\MpesaController::class, /* |-------------------------------------------------------------------------- | Route middlewares |-------------------------------------------------------------------------- | | This are the route middlewares that will be used by the mpesa callback routes | You can add more middlewares here if you want to add more middlewares to the | mpesa callback routes. | | Alternatively, you can disable the middlewares by commenting them out if you | don't want to use them. | */ 'middlewares' => [ // This middleware will allow only whitelisted IPs to access the mpesa callback routes \Ghostscypher\Mpesa\Http\Middleware\AllowOnlyWhitelistedIps::class, // Uncomment this to enable the middleware ], /* |-------------------------------------------------------------------------- | Bypassed environment |-------------------------------------------------------------------------- | | This is a list of environments that are allowed to access the mpesa callback | when the middleware is enabled, this is useful when you want to allow the | callbacks to be accessed by some environments e.g. local environment. */ 'allowed_environments' => [ 'local', ], /* |-------------------------------------------------------------------------- | Mpesa whitelisted IPs |-------------------------------------------------------------------------- | | This is a list of IPs that are whitelisted by safaricom, these are the IPs | that safaricom will use to make the callbacks to your application, it's | important to whitelist these IPs to ensure that the callbacks are not blocked | by your firewal. It also ensures that the callbacks are secure and only safaricom | | @see https://developer.safaricom.co.ke/Documentation under Introduction -> Callback and IP Whitelisting */ 'whitelisted_ips' => [ '196.201.214.200', '196.201.214.206', '196.201.213.114', '196.201.214.207', '196.201.214.208', '196.201.213.44', '196.201.212.127', '196.201.212.138', '196.201.212.129', '196.201.212.136', '196.201.212.74', '196.201.212.69', ], /* |-------------------------------------------------------------------------- | Allow Mpesa IPs fuzzy matching |-------------------------------------------------------------------------- | | This is a flag that determines whether to allow fuzzy matching of the IPs | in the whitelist, this is useful when you want to allow IPs that are close | to the whitelisted IPs, this is useful when the IPs are not static and you | want to allow a range of IPs. | The fuzzy search will allow any IPs matching the first 3 octets of the IP | i.e. | - 196.201.214.XXX will match all IPs that start with 196.201.214 | - 196.201.213.XXX will match all IPs that start with 196.201.213 | - 196.201.212.XXX will match all IPs that start with 196.201.212 | | If in doubt, it's recommended to set this to false to ensure that only the | exact IPs are allowed. | | You can check ownership of the IPs by doing a reverse lookup of the IPs | @see https://ip-netblocks.whoisxmlapi.com/ */ 'allow_fuzzy_matching' => env('MPESA_ALLOW_FUZZY_MATCHING', false), /* |-------------------------------------------------------------------------- | Mpesa Fuzzy match IPs |-------------------------------------------------------------------------- | | This is a list of IPs that are used for fuzzy matching, these are the IPs | that will be used to match the IPs in the whitelist, this is useful when | you want to allow a range of IPs that are close to the whitelisted IPs. | | Note: This is only used when the allow_fuzzy_matching is set to true */ 'fuzzy_match_ips' => [ '196.201.214', '196.201.213', '196.201.212', ], /*******************End of customization options************************************/ ];
The supporting environment variables are:
# Mpesa API Configuration MPESA_ENV=sandbox MPESA_CONSUMER_KEY=yourkey MPESA_CONSUMER_SECRET=yoursecret MPESA_SHORTCODE=174379 MPESA_PASSKEY=bfb279f9aa9bdbcf158e97dd71a467cd2e0c893059b10f78e6b72ada1ed2c919 MEPESA_B2C_SHORTCODE=600000 MPESA_INITIATOR_NAME=testapi MPESA_INITIATOR_PASSWORD=Safaricom123! MPESA_PARTNER_NAME=testapi # Features MPESA_FEATURE_STORE_TOKENS=true MPESA_FEATURE_REGISTER_ROUTES=true MPESA_FEATURE_ENABLE_LOGGING=true
Please update the configuration file with your own values.
#Features
By default the package comes with the following features:
- Store tokens in the database, this will prevent the need to generate tokens every time you make an API call.
- Register the routes for the mpesa callback, this will register the routes for the mpesa callback, if you wish to manually handle the callbacks, you can disable this feature.
- Enable logging of the transactions, this will store all the requests and responses in the database, useful for debugging. We recommend you enable this feature.
- We have provided a controller that will handle the mpesa callbacks, you can customize this controller to fit your needs.
- We have provided a middleware that will allow only whitelisted IPs to access the mpesa callback routes, you can customize this middleware to fit your needs, by default we only allow the local environment to access the callback routes. Comment out the middleware if you don't want to use it.
- We have provided a list of whitelisted IPs that safaricom will use to make the callbacks to your application, it's important to whitelist these IPs to ensure that the callbacks are not blocked by your firewall. It also ensures that the callbacks are secure and only safaricom.
- We have provided models that are used by the package, you can customize these models to fit your needs, especially when you need to add more fields or relationships etc. We will later on discuss how to customize the models for a multi-tenant application.
- We have provided listeners that will be used to log the requests and responses of the API calls, this is useful when you want to log the requests and responses for debugging purposes. You can customize these listeners to fit your needs or add more listeners.
Note Most of the environment variables are self explanatory and we'll explore them one by one in the next sections.