{"id":16631505,"url":"https://github.com/phansys/facturama-php-sdk-abandoned","last_synced_at":"2026-04-19T16:01:41.582Z","repository":{"id":146056161,"uuid":"80791717","full_name":"phansys/facturama-php-sdk-abandoned","owner":"phansys","description":"Facturama SDK PHP","archived":false,"fork":false,"pushed_at":"2017-09-28T19:15:00.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-26T05:56:26.475Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":false,"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/phansys.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":"2017-02-03T02:54:26.000Z","updated_at":"2021-06-03T20:17:04.000Z","dependencies_parsed_at":"2023-05-03T17:34:45.005Z","dependency_job_id":null,"html_url":"https://github.com/phansys/facturama-php-sdk-abandoned","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/phansys/facturama-php-sdk-abandoned","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phansys%2Ffacturama-php-sdk-abandoned","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phansys%2Ffacturama-php-sdk-abandoned/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phansys%2Ffacturama-php-sdk-abandoned/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phansys%2Ffacturama-php-sdk-abandoned/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phansys","download_url":"https://codeload.github.com/phansys/facturama-php-sdk-abandoned/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phansys%2Ffacturama-php-sdk-abandoned/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32012787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T20:23:30.271Z","status":"online","status_checked_at":"2026-04-19T02:00:07.110Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-12T04:53:29.671Z","updated_at":"2026-04-19T16:01:41.521Z","avatar_url":"https://github.com/phansys.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"#Facturama SDK PHP\n## How do I install it?\ncomposer install javiertelioz/facturama-php-sdk:^1.0@dev\n### Including the Lib\nIt includes the library to your project\n```php\nrequire __DIR__.'/vendor/autoload.php';\n```\nStart the development!\n### Create an instance of Facturama\\Api class\nExample.\n```php\n$facturama = new \\Facturama\\Api('USER', 'PASSWORD');\n```\nWith this instance you can start working.\nAt this stage your are ready to make call to the API on behalf of the user.\n#### Making GET calls\n```php\n$params = [];\n$result = $facturama-\u003eget('Client', $params);\n```\n#### Making POST calls\n```php\n$params = [\n  \"Address\" =\u003e [\n    \"Street\" =\u003e \"St One \",\n    \"ExteriorNumber\" =\u003e \"15\",\n    \"InteriorNumber\" =\u003e \"12\",\n    \"Neighborhood\" =\u003e \"Lower Manhattan, \",\n    \"ZipCode\" =\u003e \"sample string 5\",\n    \"Locality\" =\u003e \"sample string 6\",\n    \"Municipality\" =\u003e \"sample string 7\",\n    \"State\" =\u003e \"sample string 8\",\n    \"Country\" =\u003e \"MX\"\n  ],\n  \"Rfc\" =\u003e \"XEXX010101000\",\n  \"Name\" =\u003e \"Test Test\",\n  \"Email\" =\u003e \"test@facturma.com\"\n];\n$result = $facturama-\u003epost('Client', $params);\n```\n#### Making PUT calls\n```php\n$clientId = 'TGpJ_Ko32_ZSEPBcZXRnRw2';\n$body = [\n  \"Id\" =\u003e $clientId,\n  \"Address\" =\u003e [\n    \"Street\" =\u003e \"St One\",\n    \"ExteriorNumber\" =\u003e \"15\",\n    \"InteriorNumber\" =\u003e \"12\",\n    \"Neighborhood\" =\u003e \"Lower Manhattan, \",\n    \"ZipCode\" =\u003e \"sample string 5\",\n    \"Locality\" =\u003e \"sample string 6\",\n    \"Municipality\" =\u003e \"sample string 7\",\n    \"State\" =\u003e \"sample string 8\",\n    \"Country\" =\u003e \"MX\"\n  ],\n  \"Rfc\" =\u003e \"XEXX010101000\",\n  \"Name\" =\u003e \"Test Test 2\",\n  \"Email\" =\u003e \"test@facturma.com\"\n];\n\n$result = $facturama-\u003eput('Client/' . $clientId, $body);\n```\n#### Making DELETE calls\n```php\n$clientId = 'TGpJ_Ko32_ZSEPBcZXRnRw2';\n\n$result = $facturama-\u003edelete('Client/' . $clientId);\n```\n## Examples\nDon't forget to check out our examples codes in the [examples](https://github.com/javiertelioz/facturama-php-sdk/tree/master/examples) directory\n\n## I want to contribute!\nThat is great! Just fork the project in github. Create a topic branch, write some code, and add some tests for your new code.\n\nThanks for helping!\n\n##Contributing:\n[phansys](https://github.com/phansys/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphansys%2Ffacturama-php-sdk-abandoned","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphansys%2Ffacturama-php-sdk-abandoned","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphansys%2Ffacturama-php-sdk-abandoned/lists"}