{"id":20578046,"url":"https://github.com/ebitkov/build-symfony","last_synced_at":"2026-05-18T00:32:43.876Z","repository":{"id":206664881,"uuid":"717402910","full_name":"ebitkov/build-symfony","owner":"ebitkov","description":"Github Action for building and testing Symfony apps","archived":false,"fork":false,"pushed_at":"2026-04-16T09:16:53.000Z","size":35,"stargazers_count":0,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-16T11:14:37.235Z","etag":null,"topics":["action","github-action","symfony"],"latest_commit_sha":null,"homepage":"","language":null,"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/ebitkov.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2023-11-11T11:42:44.000Z","updated_at":"2026-04-16T09:16:56.000Z","dependencies_parsed_at":"2024-09-13T23:52:23.629Z","dependency_job_id":"203c9559-c212-4a53-a126-370d2fd60a96","html_url":"https://github.com/ebitkov/build-symfony","commit_stats":null,"previous_names":["ebitkov/build-symfony"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/ebitkov/build-symfony","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebitkov%2Fbuild-symfony","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebitkov%2Fbuild-symfony/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebitkov%2Fbuild-symfony/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebitkov%2Fbuild-symfony/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ebitkov","download_url":"https://codeload.github.com/ebitkov/build-symfony/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebitkov%2Fbuild-symfony/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33160477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"ssl_error","status_checked_at":"2026-05-17T22:39:10.741Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["action","github-action","symfony"],"created_at":"2024-11-16T06:10:16.031Z","updated_at":"2026-05-18T00:32:43.870Z","avatar_url":"https://github.com/ebitkov.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Build Symfony action\n\nThis action builds a Symfony app. You can optionally enable webpack asset building with NPM and testing with PHPUnit.\n\nThe build can be saved to the [GitHub Action Cache](https://github.com/actions/cache) and restored in other steps or\njobs.\n\n## Usage\n\n```yaml\n- uses: ebitkov/build-symfony@v2\n  with:\n    # Whether to build webpack assets with NPM.\n    # Default: false\n    build-webpack-assets: ''\n\n    # Node.js version to use when building webpack assets.\n    # Default: '20'\n    node-version: ''\n\n    # Whether to save the build to cache for later reuse.\n    # Default: false\n    cache-build: ''\n\n    # Prefix used for the build cache key.\n    # github.run_id is always appended to the end.\n    # Default: 'symfony-build-'\n    cache-key-prefix: ''\n\n    # Additional Composer dependencies to install.\n    # Runs after the main installation.\n    # Accepts flex aliases and full package names with version constraints.\n    # Multiple dependencies can be defined as space-separated (e.g. 'twig symfony/doctrine-bundle')\n    # Default: null\n    composer-additional-dependencies: ''\n\n    # Additional options passed to Composer on installation.\n    # --no-interaction --no-progress --ansi are added automatically.\n    # Default: '--prefer-dist'\n    composer-options: ''\n    \n    # GitHub Access Token.\n    # Passed to Composer for authentication.\n    # Default: ''\n    github-token: ''\n\n    # PHP extensions to install.\n    # String in CSV format.\n    # Default: 'mbstring, xml, ctype, iconv, intl, pdo, pdo_mysql, dom, filter, gd, json'\n    php-extensions: ''\n\n    # PHP version to use.\n    # Default: 8.2\n    php-version: ''\n    \n    # Repository to fetch, passed to action/checkout.\n    # See https://github.com/actions/checkout for more details.\n    # Mainly used for internal testing.\n    # Default: ${{ github.repository }}\n    repository: ''\n\n    # Whether to run tests with PHPUnit.\n    # Installs PHPUnit automatically, if enabled.\n    # Default: false\n    run-tests: ''\n\n    # APP_ENV value.\n    # Default: 'dev'\n    symfony-environment: ''\n\n    # Whether to download Git-LFS files.\n    # Default: false\n    lfs: ''\n```\n\n### Reusing build files in other jobs\n\n```yaml\njobs:\n  build:\n    # ...\n    outputs:\n      cache-key: ${{ steps.build.outputs.cache-key }}\n    steps:\n        - id: build\n          uses: ebitkov/build-symfony@v2\n          with:\n            cache-build: true\n\n  next_job:\n    needs: build\n    # ...\n    steps:\n      - uses: actions/cache/restore@v5\n        with:\n          key: ${{ needs.build.outputs.cache-key }}\n          path: ./\n          fail-on-cache-miss: true\n          \n      - # next steps ...\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febitkov%2Fbuild-symfony","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Febitkov%2Fbuild-symfony","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febitkov%2Fbuild-symfony/lists"}