{"id":18489650,"url":"https://github.com/daniel-ac-martin/php-seids","last_synced_at":"2025-06-18T20:38:34.533Z","repository":{"id":30630258,"uuid":"34185724","full_name":"daniel-ac-martin/php-seids","owner":"daniel-ac-martin","description":"PHP SEIDS: Supplementary, Easily Interchangeable Data Structures","archived":false,"fork":false,"pushed_at":"2016-01-17T19:29:22.000Z","size":93,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-13T23:35:57.310Z","etag":null,"topics":["data-structures","library","php"],"latest_commit_sha":null,"homepage":"http://php-seids.net","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/daniel-ac-martin.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":"2015-04-18T22:47:01.000Z","updated_at":"2024-09-03T23:40:43.000Z","dependencies_parsed_at":"2022-09-05T02:00:47.044Z","dependency_job_id":null,"html_url":"https://github.com/daniel-ac-martin/php-seids","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/daniel-ac-martin/php-seids","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daniel-ac-martin%2Fphp-seids","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daniel-ac-martin%2Fphp-seids/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daniel-ac-martin%2Fphp-seids/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daniel-ac-martin%2Fphp-seids/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daniel-ac-martin","download_url":"https://codeload.github.com/daniel-ac-martin/php-seids/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daniel-ac-martin%2Fphp-seids/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260630332,"owners_count":23039083,"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":["data-structures","library","php"],"created_at":"2024-11-06T12:57:27.783Z","updated_at":"2025-06-18T20:38:29.518Z","avatar_url":"https://github.com/daniel-ac-martin.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"PHP SEIDS: Supplementary, Easily Interchangeable Data Structures\n================================================================\n\n[![Build Status][build status]][travis-ci]\n\n**[PHP SEIDS]** provides drop-in replacements for the [SPL Data Structure\nclasses] which offer alternative implementations and/or enhanced\nfunctionality.\n\nThe main features of this library are:\n\n* An [array-deque] (only takes integer keys in a certain range, grows\n  automatically from either end)\n* An [updatable pairing heap], with associated [priority queue]\n\nA [full list of classes] as well as [some simple tutorials] on how to use the\nclasses can be found in [the manual].\n\nThe library has been designed so that it is very easy to switch between them and\nthe original ones provided by the SPL. This means that if at some point in the\nfuture you no longer require the extra functionality they provide you can simply\nswitch back to using the original SPL ones.\n\nThis is the initial release of this library which means it cannot be guaranteed\nto be bug free. That said, the library has passed its extensive unit test suite\nwhich has 100% [code coverage] (by line).\n\n**Note:** The classes in this library are implemented directly in PHP, rather\nthan C as the original SPL versions are. As such, they are *not* fast and should\nonly be used when execution speed is not an issue or when the extra\nfunctionality they provide is absolutely required.\n\nGetting started\n---------------\n\n1. PHP 5.3.x is required\n2. Install PHP SEIDS using [Composer] (recommended) or manually\n3. Read the short [tutorials] to see how to use the library\n\nComposer Installation\n---------------------\n\n1. Get [Composer]\n2. Require PHP SEIDS with `php composer.phar require daniel-ac-martin/php-seids`\n3. Install dependencies with `php composer.phar install`\n\nContributing\n------------\n\nIf you would like to contribute to PHP SEIDS please bear in mind that it is\nwritten according to the PSR-1 coding standard. The project is set-up to work\nwith PHP_CodeSniffer to help contributors keep to this standard.\n\nLicense\n-------\n\nCopyright (C) 2015 Daniel A.C. Martin\n\nDistributed under the MIT License.\n\n [PHP SEIDS]:                  http://php-seids.net\n [travis-ci]:                  https://travis-ci.org/daniel-ac-martin/php-seids\n [build status]:               https://travis-ci.org/daniel-ac-martin/php-seids.png?branch=master\n [SPL Data Structure classes]: http://php.net/manual/en/spl.datastructures.php\n [array-deque]:                http://php-seids.net/manual/en/class.seids.arrays.dynamic.arraydeque.php\n [updatable pairing heap]:     http://php-seids.net/manual/en/class.seids.heaps.pairing.heap.php\n [priority queue]:             http://php-seids.net/manual/en/class.seids.heaps.pairing.priorityqueue.php\n [full list of classes]:       http://php-seids.net/manual/en/datastructures.php\n [tutorials]:                  http://php-seids.net/manual/en/getting-started.tutorials.php\n [some simple tutorials]:      http://php-seids.net/manual/en/getting-started.tutorials.php\n [the manual]:                 http://php-seids.net/manual/en/\n [code coverage]:              http://php-seids.net/code-coverage/\n [Composer]:                   http://getcomposer.org\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaniel-ac-martin%2Fphp-seids","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaniel-ac-martin%2Fphp-seids","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaniel-ac-martin%2Fphp-seids/lists"}