{"id":43402117,"url":"https://github.com/firelike/itunes-api","last_synced_at":"2026-02-02T15:27:34.995Z","repository":{"id":62504946,"uuid":"77013509","full_name":"firelike/itunes-api","owner":"firelike","description":"Zend Framework module to consume iTunes APIs","archived":false,"fork":false,"pushed_at":"2020-07-03T02:50:35.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-29T00:09:49.464Z","etag":null,"topics":["guzzle-services","guzzlehttp","itunes-api","zend-framework"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/firelike.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}},"created_at":"2016-12-21T03:44:43.000Z","updated_at":"2020-07-03T02:50:38.000Z","dependencies_parsed_at":"2022-11-02T12:45:27.615Z","dependency_job_id":null,"html_url":"https://github.com/firelike/itunes-api","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/firelike/itunes-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/firelike%2Fitunes-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/firelike%2Fitunes-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/firelike%2Fitunes-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/firelike%2Fitunes-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/firelike","download_url":"https://codeload.github.com/firelike/itunes-api/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/firelike%2Fitunes-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29014173,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-02T14:58:54.169Z","status":"ssl_error","status_checked_at":"2026-02-02T14:58:51.285Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["guzzle-services","guzzlehttp","itunes-api","zend-framework"],"created_at":"2026-02-02T15:27:34.437Z","updated_at":"2026-02-02T15:27:34.991Z","avatar_url":"https://github.com/firelike.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"## iTunes API Client\n\n[![Build Status](https://travis-ci.org/firelike/itunes-api.svg?branch=master\u0026format=flat-square)](https://travis-ci.org/firelike/itunes-api)\n[![License](https://poser.pugx.org/firelike/itunes-api/license?format=flat-square)](https://packagist.org/packages/firelike/itunes-api)\n\n\n## Introduction\n\nLaminas/Zend Framework module to consume iTunes API\n\n## Installation\nInstall the module using Composer into your application's vendor directory. Add the following line to your\n`composer.json`.\n\n```json\n{\n    \"require\": {\n        \"firelike/itunes-api\": \"^1.0\"\n    }\n}\n```\n## Configuration\n\nEnable the module in your `application.config.php` file.\n\n```php\nreturn array(\n    'modules' =\u003e array(\n        'Firelike\\ITunes'\n    )\n);\n```\n\nCopy and paste the `itunes.local.php.dist` file to your `config/autoload` folder and customize it with your credentials and\nother configuration settings. Make sure to remove `.dist` from your file.Your `itunes.local.php` might look something like the following:\n\n```php\n\u003c?php\nreturn [\n    'itunes_service' =\u003e [\n        'log'=\u003e[\n            'enable'=\u003efalse,\n            'message_formats'=\u003e[\n                '{method} {uri} HTTP/{version} {req_body}',\n                'RESPONSE: {code} - {res_body}',\n            ],\n            'logger'=\u003e[\n                 'stream' =\u003e 'php://output',\n            ]\n        ]\n    ]\n];\n```\n\n## Usage\n\nCalling from your code:\n\n```php\n        use Firelike\\ITunes\\Request\\AbstractRequest;\n        use Firelike\\ITunes\\Request\\Search as SearchRequest;\n        use Firelike\\ITunes\\Service\\ITunesService;\n\n        \n        $request = new SearchRequest();\n        $request-\u003esetTerm('micheal connelly')\n            -\u003esetMedia('audiobook')\n            -\u003esetLimit(25);\n\n        $service = new ITunesService();\n        $result = $service-\u003esearch($request);\n        \n        $numberOfRecords = $result-\u003etoArray()['resultCount'];\n        var_dump($numberOfRecords);\n\n        $records= $result-\u003etoArray()['results'];\n        var_dump($records);\n        \n```\n\nUsing the console:\n\n```php\nphp public/index.php itunes search -v\n```\n## Implemented Service Methods:\n\n* **search**\n* **lookup**\n* **feed**\n* **availableFeeds**\n* **genres**\n\n\n## Links\n\n* [Zend Framework website](http://framework.zend.com)\n* [iTunes Search API](https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/)\n* [Apple RSS feeds](http://www.apple.com/rss/)\n* [iTunes RSS Feed Generator](https://rss.itunes.apple.com/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirelike%2Fitunes-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffirelike%2Fitunes-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffirelike%2Fitunes-api/lists"}