idez / laravel-cnab
Laravel Cnab
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 4 574
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^8.0
- illuminate/contracts: ^8.37|^9.0
- spatie/laravel-package-tools: ^1.4.3
Requires (Dev)
- brianium/paratest: ^6.3
- friendsofphp/php-cs-fixer: ^2.16
- nunomaduro/collision: ^5.3
- nunomaduro/larastan: ^1.0
- pestphp/pest: ^1.18
- pestphp/pest-plugin-laravel: ^1.1
- pestphp/pest-plugin-parallel: ^0.3.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.3
README
A Laravel package to handle cnab files.
Installation
You can install the package via composer:
composer require idez/laravel-cnab
You can publish and run the migrations with:
php artisan vendor:publish --provider="Idez\Cnab\Providers\CnabServiceProvider" --tag="cnab-migrations" php artisan migrate
You can publish the config file with:
php artisan vendor:publish --provider="Idez\Cnab\Providers\CnabServiceProvider" --tag="cnab-config"
This is the contents of the published config file:
return [ // ];
Usage
// Parse $parsedFile = cnab()->parse( type: '', layout: 400, bank: 0, file: '' ); // Generate $cnabFile = cnab()->generate( type: '', layout: 400, bank: 0, data: [] );
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
License
The MIT License (MIT). Please see License File for more information.