{"id":15077659,"url":"https://github.com/invis1ble/serializer-extension-bundle","last_synced_at":"2025-09-07T04:32:45.704Z","repository":{"id":242603622,"uuid":"809792979","full_name":"Invis1ble/serializer-extension-bundle","owner":"Invis1ble","description":"Provides integration of the invis1ble/serializer-extension library into the Symfony framework","archived":false,"fork":false,"pushed_at":"2024-06-06T14:07:29.000Z","size":45,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T17:13:08.247Z","etag":null,"topics":["denormalizer","deserializer","extension","normalizer","psr","serializer","symfony-bundle","uri","uriinterface","url"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Invis1ble.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-06-03T13:10:31.000Z","updated_at":"2024-06-04T15:50:13.000Z","dependencies_parsed_at":"2024-06-06T15:42:03.236Z","dependency_job_id":null,"html_url":"https://github.com/Invis1ble/serializer-extension-bundle","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"f49a183a3d14ca037c81ee33c360dcf322d38b5d"},"previous_names":["invis1ble/serializer-extension-bundle"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fserializer-extension-bundle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fserializer-extension-bundle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fserializer-extension-bundle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Invis1ble%2Fserializer-extension-bundle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Invis1ble","download_url":"https://codeload.github.com/Invis1ble/serializer-extension-bundle/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246068302,"owners_count":20718503,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["denormalizer","deserializer","extension","normalizer","psr","serializer","symfony-bundle","uri","uriinterface","url"],"created_at":"2024-09-25T04:06:03.771Z","updated_at":"2025-03-28T17:13:17.120Z","avatar_url":"https://github.com/Invis1ble.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"SerializerExtensionBundle\n==========================\n\n![CI Status](https://github.com/Invis1ble/serializer-extension-bundle/actions/workflows/ci.yml/badge.svg?event=push)\n[![Code Coverage](https://codecov.io/gh/Invis1ble/serializer-extension-bundle/graph/badge.svg?token=K7S3BXER5K)](https://codecov.io/gh/Invis1ble/serializer-extension-bundle)\n[![Packagist](https://img.shields.io/packagist/v/Invis1ble/serializer-extension-bundle.svg)](https://packagist.org/packages/Invis1ble/serializer-extension-bundle)\n[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE)\n\nThe `SerializerExtensionBundle` provides integration of the [invis1ble/serializer-extension](https://github.com/Invis1ble/serializer-extension) library into the Symfony framework.\n\n\nInstallation\n------------\n\nMake sure Composer is installed globally, as explained in the\n[installation chapter](https://getcomposer.org/doc/00-intro.md)\nof the Composer documentation.\n\n### Applications that use Symfony Flex\n\nOpen a command console, enter your project directory and execute:\n\n```console\n$ composer require invis1ble/serializer-extension-bundle\n```\n\n### Applications that don't use Symfony Flex\n\n#### Step 1: Download the Bundle\n\nOpen a command console, enter your project directory and execute the\nfollowing command to download the latest stable version of this bundle:\n\n```console\n$ composer require invis1ble/serializer-extension-bundle\n```\n\n#### Step 2: Enable the Bundle\n\nThen, enable the bundle by adding it to the list of registered bundles\nin the `config/bundles.php` file of your project:\n\n```php\n// config/bundles.php\n\nreturn [\n    // ...\n    Invis1ble\\SerializerExtensionBundle\\Invis1bleSerializerExtensionBundle::class =\u003e ['all' =\u003e true],\n];\n```\n\n\nDevelopment\n-----------\n\n### Getting started\n\n1. If not already done, [install Docker Compose](https://docs.docker.com/compose/install/) (v2.10+)\n2. Run `docker compose build --no-cache` to build fresh images\n3. Run `docker compose up -d --wait` to start the Docker containers\n4. Run `docker compose exec php composer install` to install dependencies\n5. Run `docker compose down --remove-orphans` to stop the Docker containers.\n\n### Check for Coding Standards violations\n\nRun PHP_CodeSniffer checks:\n\n```sh\ndocker compose exec -it php bin/php_codesniffer\n```\n\nRun PHP-CS-Fixer checks:\n\n```sh\ndocker compose exec -it php bin/php-cs-fixer\n```\n\nRun Rector checks:\n\n```sh\ndocker compose exec -it php bin/rector\n```\n\n\nTesting\n-------\n\nTo run Unit tests during development\n\n```sh\ndocker compose exec php vendor/bin/phpunit\n```\n\nTo run with coverage\n\n```sh\nXDEBUG_MODE=coverage docker compose up -d --wait\ndocker compose exec php vendor/bin/phpunit --coverage-clover var/log/coverage-clover.xml\n```\n\n\nLicense\n-------\n\n[The MIT License](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvis1ble%2Fserializer-extension-bundle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finvis1ble%2Fserializer-extension-bundle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finvis1ble%2Fserializer-extension-bundle/lists"}