https://github.com/lacussolutions/br-utils-php_cnpj-gen
Utility function to generate valid CNPJ (Brazilian employer ID).
https://github.com/lacussolutions/br-utils-php_cnpj-gen
br cnpj composer generator helpers packagist php utils
Last synced: 6 months ago
JSON representation
Utility function to generate valid CNPJ (Brazilian employer ID).
- Host: GitHub
- URL: https://github.com/lacussolutions/br-utils-php_cnpj-gen
- Owner: LacusSolutions
- License: mit
- Created: 2025-09-03T19:21:29.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-10-17T23:30:26.000Z (9 months ago)
- Last Synced: 2025-10-19T00:03:38.332Z (9 months ago)
- Topics: br, cnpj, composer, generator, helpers, packagist, php, utils
- Language: PHP
- Homepage: https://github.com/LacusSolutions/br-utils-php
- Size: 38.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

[](https://packagist.org/packages/lacus/cnpj-gen)
[](https://packagist.org/packages/lacus/cnpj-gen)
[](https://www.php.net/)
[](https://github.com/LacusSolutions/br-utils-php/actions)
[](https://github.com/LacusSolutions/br-utils-php)
[](https://github.com/LacusSolutions/br-utils-php/blob/main/LICENSE)
Utility function/class to generate valid CNPJ (Brazilian employer ID).
|  |  |  |  |
|--- | --- | --- | --- |
| Passing ✔ | Passing ✔ | Passing ✔ | Passing ✔ |
## Installation
```bash
# using Composer
$ composer require lacus/cnpj-gen
```
## Import
```php
generate(); // returns '65453043000178'
// With options
$cnpj = $generator->generate(
format: true
); // returns '65.453.043/0001-78'
$cnpj = $generator->generate(
prefix: '45623767'
); // returns '45623767000296'
$cnpj = $generator->generate(
prefix: '456237670002',
format: true
); // returns '45.623.767/0002-96'
```
The options can be provided to the constructor or the `generate()` method. If passed to the constructor, the options will be attached to the `CnpjGenerator` instance. When passed to the `generate()` method, it only applies the options to that specific call.
```php
$generator = new CnpjGenerator(format: true);
$cnpj1 = $generator->generate(); // '65.453.043/0001-78' (uses instance options)
$cnpj2 = $generator->generate(format: false); // '65453043000178' (overrides instance options)
$cnpj3 = $generator->generate(); // '12.345.678/0001-95' (uses instance options again)
```
### Imperative programming
The helper function `cnpj_gen()` is just a functional abstraction. Internally it creates an instance of `CnpjGenerator` and calls the `generate()` method right away.
```php
$cnpj = cnpj_gen(); // returns '65453043000178'
$cnpj = cnpj_gen(format: true); // returns '65.453.043/0001-78'
$cnpj = cnpj_gen(prefix: '45623767'); // returns '45623767000296'
$cnpj = cnpj_gen(prefix: '456237670002', format: true); // returns '45.623.767/0002-96'
```
### Generator Options
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `format` | `?bool` | `false` | Whether to format the output with dots, slash, and dash |
| `prefix` | `?string` | `''` | If you have CNPJ initials and want to complete it with valid digits. The string provided must contain between 0 and 12 digits. The branch ID (characters 8 to 11) cannot be "0000". |
## Contribution & Support
We welcome contributions! Please see our [Contributing Guidelines](https://github.com/LacusSolutions/br-utils-php/blob/main/CONTRIBUTING.md) for details. But if you find this project helpful, please consider:
- ⭐ Starring the repository
- 🤝 Contributing to the codebase
- 💡 [Suggesting new features](https://github.com/LacusSolutions/br-utils-php/issues)
- 🐛 [Reporting bugs](https://github.com/LacusSolutions/br-utils-php/issues)
## License
This project is licensed under the MIT License - see the [LICENSE](https://github.com/LacusSolutions/br-utils-php/blob/main/LICENSE) file for details.
## Changelog
See [CHANGELOG](https://github.com/LacusSolutions/br-utils-php/blob/main/packages/cnpj-gen/CHANGELOG.md) for a list of changes and version history.
---
Made with ❤️ by [Lacus Solutions](https://github.com/LacusSolutions)