https://github.com/cable8mm/order-sheet
This package is able to generate a kind of seed for order sheets and order invoices so you can use it for testing like that
https://github.com/cable8mm/order-sheet
generator logistics php playauto shopping wms xlsx
Last synced: 4 months ago
JSON representation
This package is able to generate a kind of seed for order sheets and order invoices so you can use it for testing like that
- Host: GitHub
- URL: https://github.com/cable8mm/order-sheet
- Owner: cable8mm
- License: mit
- Created: 2025-02-07T13:30:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-08T09:25:10.000Z (over 1 year ago)
- Last Synced: 2025-10-05T22:41:45.318Z (8 months ago)
- Topics: generator, logistics, php, playauto, shopping, wms, xlsx
- Language: PHP
- Homepage: https://www.palgle.com/order-sheet/
- Size: 114 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# Order Sheets and Invoices Generator
[](https://github.com/cable8mm/order-sheet/actions/workflows/code-style.yml)
[](https://github.com/cable8mm/order-sheet/actions/workflows/run-tests.yml)
[](https://github.com/cable8mm/order-sheet/actions/workflows/pages/pages-build-deployment)
[](https://packagist.org/packages/cable8mm/order-sheet)
[](https://packagist.org/packages/cable8mm/order-sheet)
[](https://packagist.org/packages/cable8mm/order-sheet/stats)
[](https://github.com/cable8mm/order-sheet/stargazers)
[](https://github.com/cable8mm/order-sheet/blob/main/LICENSE.md)
This package is able to generate a kind of seeds for **order sheets** and **order invoices** so you can use this package for testing as you want to.
We have provided the API Documentation on the web. For more information, please visit ❤️
## Supported Companies
- [x] PLAYAUTO -
## Installation
You can install the package via composer:
```bash
composer require cable8mm/order-sheet
```
## Usage
```php
OrderSheet::of(OrderSheetType::PlayautoType)
->count(10) // 10 of factories
->header() // include the header row
->path('dist') // the saving path
->xlsx('my.xlsx'); // export to xlsx file(default: 'order_sheet.xlsx')
// => Save 10 factories with header in 'dist' folder
$orderSheets = OrderSheet::of(OrderSheetType::PlayautoType)
->count(10) // 10 of factories
->csv(); // export to csv
// => Get 10 factories without header row
$orderSheets = OrderSheet::of(OrderSheetType::PlayautoType)
->count(10) // 10 of factories
->toArray(); // export to array
// => Get 10 factories array without header row
```
### Testing
```bash
composer test
```
### Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.
## Contributing
Please see [CONTRIBUTING](CONTRIBUTING.md) for details.
### Security
If you discover any security related issues, please email instead of using the issue tracker.
## Credits
- [Samgu Lee](https://github.com/cable8mm)
- [All Contributors](../../contributors)
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.