PHPackages                             lljaworski/ceidg-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. lljaworski/ceidg-bundle

ActiveSymfony-bundle[API Development](/categories/api)

lljaworski/ceidg-bundle
=======================

Symfony bundle for CEIDG (Centralna Ewidencja i Informacja o Działalności Gospodarczej) integration

v1.1.4(6mo ago)1165MITPHPPHP &gt;=8.1

Since Nov 30Pushed 6mo agoCompare

[ Source](https://github.com/lljaworski/ceidg-bundle)[ Packagist](https://packagist.org/packages/lljaworski/ceidg-bundle)[ RSS](/packages/lljaworski-ceidg-bundle/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (10)Versions (7)Used By (0)

CEIDG Bundle
============

[](#ceidg-bundle)

Symfony bundle for integrating with CEIDG (Centralna Ewidencja i Informacja o Działalności Gospodarczej) - the Polish Central Register and Information on Business.

Overview
--------

[](#overview)

This bundle provides a foundation for integrating CEIDG API services into your Symfony 7.3+ application with API Platform 4.2 support.

Requirements
------------

[](#requirements)

- PHP 8.2 or higher
- Symfony 7.0 or higher
- Symfony HTTP Client component

Installation
------------

[](#installation)

### Step 1: Install via Composer

[](#step-1-install-via-composer)

```
composer require lljaworski/ceidg-bundle
```

### Step 2: Enable the Bundle

[](#step-2-enable-the-bundle)

If you're not using Symfony Flex, add the bundle to `config/bundles.php`:

```
return [
    // ...
    LukaszJaworski\CeidgBundle\CeidgBundle::class => ['all' => true],
];
```

### Step 3: Configure the Bundle

[](#step-3-configure-the-bundle)

Create a configuration file `config/packages/ceidg.yaml`:

```
ceidg:
    api_url: '%env(CEIDG_API_URL)%'
    api_key: '%env(CEIDG_API_KEY)%'
```

### Step 4: Set Environment Variables

[](#step-4-set-environment-variables)

Add the following to your `.env` file:

```
CEIDG_API_URL=https://dane.biznes.gov.pl/api/ceidg/v2
CEIDG_API_KEY=your_api_key_here
```

You can obtain your CEIDG API key from .

Configuration
-------------

[](#configuration)

Default configuration:

```
ceidg:
    api_url: 'https://dane.biznes.gov.pl/api/ceidg/v2'  # Default CEIDG API URL
    api_key: ''  # Required: Your CEIDG API key
```

Structure
---------

[](#structure)

```
ceidg-bundle/
├── src/
│   ├── CeidgBundle.php              # Main bundle class
│   ├── DependencyInjection/         # Symfony DI configuration
│   ├── Service/                     # Business logic services
│   ├── Command/                     # Console commands
│   ├── Entity/                      # Doctrine entities
│   ├── Repository/                  # Database repositories
│   ├── ApiResource/                 # API Platform resources
│   └── State/                       # API Platform state providers/processors
├── config/
│   └── services.yaml                # Service definitions
├── tests/
│   ├── Unit/                        # Unit tests
│   └── Functional/                  # Functional tests
├── composer.json
└── README.md

```

Development
-----------

[](#development)

### Running Tests

[](#running-tests)

```
cd ceidg-bundle
vendor/bin/phpunit
```

### Adding Services

[](#adding-services)

Place your services in `src/Service/` directory. They will be automatically registered and available for autowiring.

### Adding Commands

[](#adding-commands)

Create console commands in `src/Command/` directory. They will be automatically tagged as console commands.

### Adding API Resources

[](#adding-api-resources)

Create API Platform resources in `src/ApiResource/` directory with corresponding state providers/processors in `src/State/`.

Architecture
------------

[](#architecture)

This bundle follows:

Links
-----

[](#links)

- [Packagist](https://packagist.org/packages/lljaworski/ceidg-bundle)
- [GitHub Repository](https://github.com/lljaworski/ceidg-bundle)

License`composer.json` with proper repository information
---------------------------------------------------------

[](#licensecomposerjson-with-proper-repository-information)

3. Set up CI/CD for independent testing
4. Publish to Packagist
5. Update main project to use the package via Composer

License
-------

[](#license)

MIT

Authors
-------

[](#authors)

- Lukasz Jaworski

Contributing
------------

[](#contributing)

Contributions are welcome! Please submit pull requests with tests and documentation.

Support
-------

[](#support)

For issues and questions, please use the GitHub issue tracker.

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance66

Regular maintenance activity

Popularity12

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

6

Last Release

206d ago

PHP version history (2 changes)v1.0.0PHP &gt;=8.2

v1.1.2PHP &gt;=8.1

### Community

Maintainers

![](https://www.gravatar.com/avatar/38555ce3037c20b412e251342136469b96c0a3aa043942c83f723187ec804309?d=identicon)[lljaworski](/maintainers/lljaworski)

---

Top Contributors

[![lljaworski](https://avatars.githubusercontent.com/u/9831254?v=4)](https://github.com/lljaworski "lljaworski (9 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/lljaworski-ceidg-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/lljaworski-ceidg-bundle/health.svg)](https://phpackages.com/packages/lljaworski-ceidg-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M375](/packages/easycorp-easyadmin-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[web-auth/webauthn-framework

FIDO2/Webauthn library for PHP and Symfony Bundle.

51390.8k2](/packages/web-auth-webauthn-framework)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

585.4M518](/packages/shopware-core)[web-auth/webauthn-symfony-bundle

FIDO2/Webauthn Security Bundle For Symfony

65474.5k9](/packages/web-auth-webauthn-symfony-bundle)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.1k16.8k](/packages/prestashop-prestashop)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
