{"id":21277925,"url":"https://github.com/b13/akamai","last_synced_at":"2026-02-02T13:32:00.018Z","repository":{"id":54905808,"uuid":"260476435","full_name":"b13/akamai","owner":"b13","description":"Akamai CDN Adapter for TYPO3","archived":false,"fork":false,"pushed_at":"2024-11-28T16:44:13.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-06-26T03:11:54.571Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/b13.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":"2020-05-01T14:18:07.000Z","updated_at":"2024-11-28T16:43:54.000Z","dependencies_parsed_at":"2024-11-28T17:36:10.204Z","dependency_job_id":null,"html_url":"https://github.com/b13/akamai","commit_stats":{"total_commits":15,"total_committers":3,"mean_commits":5.0,"dds":0.1333333333333333,"last_synced_commit":"9dda25bf0c1cfae84f0a83530c715e215579eed7"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/b13/akamai","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b13%2Fakamai","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b13%2Fakamai/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b13%2Fakamai/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b13%2Fakamai/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/b13","download_url":"https://codeload.github.com/b13/akamai/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/b13%2Fakamai/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262183037,"owners_count":23271745,"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":[],"created_at":"2024-11-21T10:08:16.955Z","updated_at":"2026-02-02T13:31:54.994Z","avatar_url":"https://github.com/b13.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Akamai CDN Adapter for TYPO3\n\nWhen TYPO3 is behind Akamai's EdgeGrid CDN, this extension is a perfect companion\nfor you.\n\nThis extension hides the complexity for Akamai's EdgeGrid API to purge caches.\n\n## Installation\n\nAs EXT:akamai is using some PHP libraries, this extension is currently only useful\nwhen running TYPO3 in composer mode. You can install this extension by using composer:\n\n    composer req b13/akamai\n\n## Usage\n\nBy default, EXT:akamai ships with a `akamai:purge` CLI command to purge a content provider\ngroup (CP) or a specific URL. TYPO3 is using the graceful \"invalidate\" endpoints.\n\nIt is possible to purge a single or multiple URLs\n\n    ./vendor/bin/typo3 akamai:purge --url=https://example.com/page1 --url=https://example.com/page2\n\nor purge a whole Content Provider by its CP code\n\n    ./vendor/bin/typo3 akamai:purge --url=https://example.com/page1 --url=https://example.com/page2\n\nEXT:akamai chooses the network by determining the TYPO3 Context and only uses the\nproduction network if TYPO3 Context is set to Production. However, this can be overridden\nby a `--network=staging` or `--network=production` setting.\n\n## Integration into TYPO3 Backend\n\nEXT:akamai can be used in conjunction with TYPO3's Proxy Cache Manager Extension.\n\nUsing the Akamai Adapter for EXT:proxycachemanager flushes page caches directly\nwhen modifying a page. This is perfect if you're dealing with akamai configuration\nthat not just caches your static assets but also your pages.\n\nFor this, ensure to set the class `\\B13\\Akamai\\Provider\\AkamaiProxyProvider` in\nthe settings of EXT:proxycachemanager.\n\n## Configuration\n\n### Credentials\n\nAkamai uses a `.edgerc` credentials file, which currently\nrequest to be in TYPO3's main directory (project path, also where\nyour composer file resides).\n\nThis file might look like this:\n\n    [default]\n    client_secret = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx=\n    host = xxxxx.purge.akamaiapis.net\n    access_token = xxxxx\n    client_token = xxxxx\n\nIt is also possible to use Environment variables directly.\n\n    AKAMAI_DEFAULT_CLIENT_SECRET = xxxxx\n    AKAMAI_DEFAULT_HOST = xxxxx.purge.akamaiapis.net\n    AKAMAI_DEFAULT_ACCESS_TOKEN = xxxxx\n    AKAMAI_DEFAULT_CLIENT_TOKEN = xxxxx\n\nUse the Extension setting `configType` to choose between the Environment\nand the `.edgerc` mode.\n\nPlease note that the host never contains the URL scheme - no matter\nwhat configuration type you're choosing.\n\nThe default section can be configured as well, in case your installation has\nmultiple endpoints at Akamai.\n\n### Using multiple sections / CDN endpoints in Site Configuration\n\nIt is possible to define the CP code by site when using the integration of\n`EXT:proxycachemanager`. Ensure to set this in your TYPO3 site `config.yaml`:\n\n    settings:\n      cdn:\n        akamai_cpcode: \"12345\"\n        akamai_auth_section: \"superbowl_campaign\"\n\n\n\n## License\n\nThe extension is licensed under GPL v2+, same as the TYPO3 Core. For details see the LICENSE file in this repository.\n\n## Open Issues\n\nIf you find an issue, feel free to create an issue on GitHub or a pull request.\n\n## Credits\n\nThis extension was created by [Benni Mack](https://github.com/bmack) in 2020 for [b13 GmbH](https://b13.com).\n\n[Find more TYPO3 extensions we have developed](https://b13.com/useful-typo3-extensions-from-b13-to-you) that help us deliver value in client projects. As part of the way we work, we focus on testing and best practices to ensure long-term performance, reliability, and results in all our code.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fb13%2Fakamai","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fb13%2Fakamai","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fb13%2Fakamai/lists"}