therezor / laravel-transactional-jobs

Run Laravel job inside transaction (after transaction is committed, or cancel if rolled back)
MIT License
45 stars 8 forks source link

Missing `.gitattributes` file #13

Closed williamdes closed 2 years ago

williamdes commented 2 years ago

Please provide a .gitattributes to remove useless files from production servers ;)

See: https://github.com/code-lts/Laravel-FCM/blob/main/.gitattributes

vendor/therezor/laravel-transactional-jobs
├── .circleci
│   └── config.yml
├── composer.json
├── .gitignore
├── img
│   ├── laravel_schema.jpeg
│   └── package_schema.jpeg
├── LICENSE
├── phpunit.xml
├── README.md
├── src
│   ├── BusServiceProvider.php
│   ├── Contracts
│   │   └── RunAfterTransaction.php
│   └── TransactionalDispatcher.php
└── tests
    └── TransactionalDispatcherTest.php

To be added in the file

therezor commented 2 years ago

Thank you for your request. Solved

williamdes commented 2 years ago

Thanks you for https://github.com/therezor/laravel-transactional-jobs/commit/66ce180ae76f172aa2edb5556a6367efbae496af and this great lib!