{"id":32471225,"url":"https://github.com/rougin/dexter","last_synced_at":"2025-10-26T16:57:07.790Z","repository":{"id":78364692,"uuid":"126854543","full_name":"rougin/dexter","owner":"rougin","description":"\"Ready-to-eat\" CRUD for PHP backend.","archived":false,"fork":false,"pushed_at":"2025-10-26T02:12:50.000Z","size":123,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T04:11:52.424Z","etag":null,"topics":["php-crud","php-depot","php-repository"],"latest_commit_sha":null,"homepage":"https://roug.in/dexterity","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/rougin.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2018-03-26T16:04:07.000Z","updated_at":"2025-10-26T02:12:53.000Z","dependencies_parsed_at":"2025-09-28T07:06:43.807Z","dependency_job_id":"854af97c-4016-4b8a-8591-4abc6b1fc7f3","html_url":"https://github.com/rougin/dexter","commit_stats":null,"previous_names":["rougin/dexter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rougin/dexter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fdexter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fdexter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fdexter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fdexter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rougin","download_url":"https://codeload.github.com/rougin/dexter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rougin%2Fdexter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281139035,"owners_count":26450138,"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","status":"online","status_checked_at":"2025-10-26T02:00:06.575Z","response_time":61,"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":["php-crud","php-depot","php-repository"],"created_at":"2025-10-26T16:57:03.333Z","updated_at":"2025-10-26T16:57:07.784Z","avatar_url":"https://github.com/rougin.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dexter\n\n[![Latest Version on Packagist][ico-version]][link-packagist]\n[![Software License][ico-license]][link-license]\n[![Build Status][ico-build]][link-build]\n[![Coverage Status][ico-coverage]][link-coverage]\n[![Total Downloads][ico-downloads]][link-downloads]\n\n`Dexter` is a utility PHP package that provides extensible PHP classes for handling [CRUD operations](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete). It can also create HTTP routes that conforms to the [PSR-07](https://www.php-fig.org/psr/psr-7/) standard.\n\n## Installation\n\nInstall the `Dexter` package via [Composer](https://getcomposer.org/):\n\n``` bash\n$ composer require rougin/dexter\n```\n\n## Using `Depot`\n\nThe `Depot` class is a special PHP class which provides methods related to CRUD operations (e.g., `create`, `delete`, `find`, `update`):\n\n``` php\nnamespace Acme\\Depots;\n\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n}\n```\n\nUsing the `Depot` class improves development productivity as it reduces writing of code relating to CRUD operations. As it is also designed to be extensible, it can be used freely without the required methods.\n\n\u003e [!NOTE]\n\u003e In other PHP frameworks and other guides, `Depot` is also known as `Repository` from the [Repository pattern](https://designpatternsphp.readthedocs.io/en/latest/More/Repository/README.html).\n\nIf a `Depot` class is used, the following methods must be defined depending on its usage:\n\n### `create` method\n\nThe `create` method will be used for creating an item based on the provided payload:\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n/** @var array\u003cstring, mixed\u003e */\n$data = /** ... */;\n\n/** @var \\Acme\\Sample\\User */\n$item = $depot-\u003ecreate($data);\n```\n\nIf the specified method is being called, its logic must be defined from the `Depot` class:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserFactory;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    /**\n     * Creates a new item.\n     *\n     * @param array\u003cstring, mixed\u003e $data\n     *\n     * @return \\Acme\\Sample\\User\n     */\n    public function create($data)\n    {\n        return UserFactory::create($data);\n    }\n\n    // ...\n}\n```\n\nIf the required logic for the `create` method is not defined, it will throw a `LogicError`.\n\n### `delete` method\n\nWhen deleting specified items, the `delete` method can be used from the `Depot` class:\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n$depot-\u003edelete(99);\n```\n\nUsing the `delete` method also requires other methods `deleteRow` and `rowExists` to be defined:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserDeleter;\nuse Acme\\Sample\\UserReader;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Checks if the specified item exists.\n     *\n     * @param integer $id\n     *\n     * @return boolean\n     */\n    public function rowExists($id)\n    {\n        return UserReader::exists($id);\n    }\n\n    /**\n     * Deletes the specified item.\n     *\n     * @param integer $id\n     *\n     * @return boolean\n     */\n    protected function deleteRow($id)\n    {\n        return UserDeleter::delete($id);\n    }\n}\n```\n\nIf the required logic for the `delete` method is not defined, a `LogicError` will be thrown.\n\n### `find` method\n\nThe `find` method is one of the CRUD operations that tries to find an item based on the given unique identifier (e.g., `id`):\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n/** @var \\Acme\\Sample\\User */\n$item = $depot-\u003efind(99);\n```\n\nTo use the `find` method, kindly write its logic in the `findRow` method:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserReader;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Returns the specified item.\n     *\n     * @param integer $id\n     *\n     * @return \\Acme\\Sample\\User\n     * @throws \\UnexpectedValueException\n     */\n    protected function findRow($id)\n    {\n        $item = UserReader::find($id);\n\n        if (! $item)\n        {\n            throw new \\UnexpectedValueException('Item not found');\n        }\n\n        return $item;\n    }\n}\n```\n\nIf the specified identifier does not exists, it must throw an `UnexpectedValueException`. Likewise, if the required logic for the `find` method is not defined, it will throw a `LogicError`.\n\n### `get` method\n\nOne of the methods of `Depot` that returns an array of items based on the specified page number and its rows to be shown per page:\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n/** @var \\Rougin\\Dexter\\Result */\n$item = $depot-\u003eget(1, 10);\n```\n\nTo use the `get` method, the methods `getItems` and `getTotal` must be defined:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserReader;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Returns the total number of items.\n     *\n     * @return integer\n     */\n    public function getTotal()\n    {\n        return UserReader::totalRows();\n    }\n\n    /**\n     * Returns the items with filters.\n     *\n     * @param integer $page\n     * @param integer $limit\n     *\n     * @return \\Acme\\Sample\\User[]\n     */\n    protected function getItems($page, $limit)\n    {\n        return UserReader::getByLimit($limit, $page);\n    }\n}\n```\n\nIf the logic requires an offset instead of a page number, the `getOffset` method from `Depot` can be used to compute the said offset value:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserReader;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Returns the items with filters.\n     *\n     * @param integer $page\n     * @param integer $limit\n     *\n     * @return \\Acme\\Sample\\User[]\n     */\n    protected function getItems($page, $limit)\n    {\n        $offset = $this-\u003egetOffset($page, $limit);\n\n        return UserReader::items($offset, $limit);\n    }\n\n    // ...\n}\n```\n\nUsing the `get` method returns a `Result` class, which can be used for handling the result from the `Depot`:\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n/** @var \\Rougin\\Dexter\\Result */\n$item = $depot-\u003eget(1, 10);\n\nprint_r($item-\u003etoArray());\n```\n\nEach item from the `Result` class can also be parsed manually using the `asRow` class:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\User;\nuse Acme\\Sample\\UserReader;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Returns the parsed item.\n     *\n     * @param \\Acme\\Sample\\User $row\n     *\n     * @return array\u003cstring, mixed\u003e\n     */\n    protected function asRow(User $row)\n    {\n        $data = array('id' =\u003e $row-\u003eid);\n\n        $data['name'] = $row-\u003ename;\n\n        $data['age'] = $row-\u003eage + 10;\n\n        return $data;\n    }\n\n    // ...\n}\n```\n\nIf the required logic for the `get` method is not defined, a `LogicError` will be thrown.\n\n### `update` method\n\nThe `update` method is used to update details of the specified item:\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\n\n$depot = new UserDepot;\n\n/** @var array\u003cstring, mixed\u003e */\n$data = /** ... */;\n\n$depot-\u003eupdate(99, $data);\n```\n\nWhen using the `update` method, its required logic must also be defined:\n\n``` php\nnamespace Acme\\Depots;\n\nuse Acme\\Sample\\UserUpdater;\nuse Rougin\\Dexter\\Depot;\n\nclass UserDepot extends Depot\n{\n    // ...\n\n    /**\n     * Updates the specified item.\n     *\n     * @param integer              $id\n     * @param array\u003cstring, mixed\u003e $data\n     *\n     * @return boolean\n     */\n    public function update($id, $data)\n    {\n        return UserUpdater::update($id, $data);\n    }\n}\n```\n\nIf the logic for the `update` method is not defined, it will throw a `LogicError`.\n\n## Using `Route`\n\nThe `Route` class in `Dexter` is similar to the previously discussed `Depot` class. While the `Depot` class conforms to the [CRUD operations](https://en.wikipedia.org/wiki/Create,_read,_update_and_delete), the `Route` class closely follows the [RESTful software architecture style](https://en.wikipedia.org/wiki/REST) and uses the [PSR-07](https://www.php-fig.org/psr/psr-7/) standard for standardization of its HTTP responses:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Acme\\Depots\\UserDepot;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    protected $user;\n\n    public function __construct(UserDepot $user)\n    {\n        $this-\u003euser = $user;\n    }\n\n    protected function setIndexData($params)\n    {\n        $result = $this-\u003euser-\u003eget($params['page'], $params['limit']);\n\n        return new JsonResponse($result-\u003etoArray());\n    }\n}\n```\n\n``` php\n// index.php\n\nuse Acme\\Depots\\UserDepot;\nuse Acme\\Routes\\Users;\n\n$depot = new UserDepot;\n\n$route = new Users($depot);\n\n/** @var \\Psr\\Http\\Message\\ResponseInterface */\n$request = /** ... */\n\n$response = $route-\u003eindex($request);\n```\n\nThe `Route` class contains the following methods for writing their logic:\n\n**`is[METHOD]Valid`**\n\nThis method will be triggered if `[METHOD]` requires to be validated first. If not specified, it always return to `true` by default:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Checks if the items are allowed to be returned.\n     *\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return boolean\n     */\n    protected function isIndexValid($params)\n    {\n        return true;\n    }\n}\n```\n\n**`invalid[METHOD]`**\n\nThis method will be triggered if the `is[METHOD]Valid` method returns to `false`. This should return an HTTP response with an HTTP code between `4xx` to `5xx`:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidIndex()\n    {\n        return new ErrorResponse(422);\n    }\n}\n```\n\n**`set[METHOD]Data`**\n\nThis is the main method that requires to write its logic based on `[METHOD]`:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Executes the logic for returning an array of items.\n     *\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setIndexData($params)\n    {\n        $result = $this-\u003euser-\u003eget($params['page'], $params['limit']);\n\n        return new JsonResponse($result-\u003etoArray());\n    }\n}\n```\n\nUsing this kind of approach improves the code structure of HTTP routes as it only requires to write the logic for each `Route` method that is being used (e.g., `index`).\n\n\u003e [!NOTE]\n\u003e In other PHP frameworks and other guides, `Route` is also known as `Controller`.\n\n### `delete` method\n\nThe `delete` method is an HTTP route which can be used for deleting a specified item:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidDelete()\n    {\n        return new ErrorResponse(404);\n    }\n\n    /**\n     * Checks if the specified item can be deleted.\n     *\n     * @param integer $id\n     *\n     * @return boolean\n     */\n    protected function isDeleteValid($id)\n    {\n        return true;\n    }\n\n    /**\n     * Executes the logic for deleting the specified item.\n     *\n     * @param integer $id\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setDeleteData($id)\n    {\n        $this-\u003euser-\u003edelete($id);\n\n        return new JsonResponse('Deleted!', 204);\n    }\n}\n```\n\n``` php\n// index.php\n\n// ...\n\n/** @var \\Acme\\Depots\\UserDepot */\n$route = /** ... */;\n\n$response = $route-\u003edelete($id);\n```\n\n### `index` method\n\nThe `index` method should return an array of items as its HTTP response:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidIndex()\n    {\n        return new ErrorResponse(422);\n    }\n\n    /**\n     * Checks if the items are allowed to be returned.\n     *\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return boolean\n     */\n    protected function isIndexValid($params)\n    {\n        return true;\n    }\n\n    /**\n     * Executes the logic for returning an array of items.\n     *\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setIndexData($params)\n    {\n        $result = $this-\u003euser-\u003eget($params['page'], $params['limit']);\n\n        return new JsonResponse($result-\u003etoArray());\n    }\n}\n```\n\n``` php\n// index.php\n\n// ...\n\n/** @var \\Psr\\Http\\Message\\ResponseInterface */\n$request = /** ... */\n\n/** @var \\Acme\\Depots\\UserDepot */\n$route = /** ... */;\n\n$response = $route-\u003eindex($request);\n```\n\n### `show` method\n\nThe `show` method returns an HTTP response for the specified item:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidShow()\n    {\n        return new ErrorResponse(422);\n    }\n\n    /**\n     * Checks if the specified item is allowed to be returned.\n     *\n     * @param integer $id\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return boolean\n     */\n    protected function isShowValid($id, $params)\n    {\n        return true;\n    }\n\n    /**\n     * Executes the logic for returning the specified item.\n     *\n     * @param integer              $id\n     * @param array\u003cstring, mixed\u003e $params\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setShowData($id, $params)\n    {\n        $item = $this-\u003euser-\u003efind($id);\n\n        return new JsonResponse($item);\n    }\n}\n```\n\n``` php\n// index.php\n\n// ...\n\n/** @var \\Psr\\Http\\Message\\ResponseInterface */\n$request = /** ... */\n\n/** @var \\Acme\\Depots\\UserDepot */\n$route = /** ... */;\n\n$response = $route-\u003eshow(99, $request);\n```\n\n### `store` method\n\nThe `store` method should be responsible for creating new items to the specified storage:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidStore()\n    {\n        return new ErrorResponse(422);\n    }\n\n    /**\n     * Checks if it is allowed to create a new item.\n     *\n     * @param array\u003cstring, mixed\u003e $parsed\n     *\n     * @return boolean\n     */\n    protected function isStoreValid($parsed)\n    {\n        return true;\n    }\n\n    /**\n     * Executes the logic for creating a new item.\n     *\n     * @param array\u003cstring, mixed\u003e $parsed\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setStoreData($parsed)\n    {\n        $this-\u003euser-\u003ecreate($parsed);\n\n        return new JsonResponse('Created!', 201);\n    }\n}\n```\n\n``` php\n// index.php\n\n// ...\n\n/** @var \\Psr\\Http\\Message\\ResponseInterface */\n$request = /** ... */\n\n/** @var \\Acme\\Depots\\UserDepot */\n$route = /** ... */;\n\n$response = $route-\u003estore($request);\n```\n\n### `update` method\n\nThe `update` method updates the details of a specified item:\n\n``` php\nnamespace Acme\\Routes;\n\nuse Rougin\\Dexter\\Message\\ErrorResponse;\nuse Rougin\\Dexter\\Message\\JsonResponse;\nuse Rougin\\Dexter\\Route;\n\nclass Users extends Route\n{\n    // ...\n\n    /**\n     * Returns a response if the validation failed.\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function invalidUpdate()\n    {\n        return new ErrorResponse(422);\n    }\n\n    /**\n     * Checks if the specified item can be updated.\n     *\n     * @param integer $id\n     * @param array\u003cstring, mixed\u003e $parsed\n     *\n     * @return boolean\n     */\n    protected function isUpdateValid($id, $parsed)\n    {\n        return true;\n    }\n\n    /**\n     * Executes the logic for updating the specified item.\n     *\n     * @param integer              $id\n     * @param array\u003cstring, mixed\u003e $parsed\n     *\n     * @return \\Psr\\Http\\Message\\ResponseInterface\n     */\n    protected function setUpdateData($id, $parsed)\n    {\n        $this-\u003euser-\u003eupdate($id, $parsed);\n\n        return new JsonResponse('Updated!', 204);\n    }\n}\n```\n\n``` php\n// index.php\n\n// ...\n\n/** @var \\Psr\\Http\\Message\\ResponseInterface */\n$request = /** ... */\n\n/** @var \\Acme\\Depots\\UserDepot */\n$route = /** ... */;\n\n$response = $route-\u003eupdate(99, $request);\n```\n\n## Change log\n\nPlease see [CHANGELOG][link-changelog] for more recent changes.\n\n## Contributing\n\nSee [CONTRIBUTING][link-contributing] on how to contribute.\n\n## License\n\nThe MIT License (MIT). Please see [LICENSE][link-license] for more information.\n\n[ico-build]: https://img.shields.io/github/actions/workflow/status/rougin/dexter/build.yml?style=flat-square\n[ico-coverage]: https://img.shields.io/codecov/c/github/rougin/dexter?style=flat-square\n[ico-downloads]: https://img.shields.io/packagist/dt/rougin/dexter.svg?style=flat-square\n[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square\n[ico-version]: https://img.shields.io/packagist/v/rougin/dexter.svg?style=flat-square\n\n[link-build]: https://github.com/rougin/dexter/actions\n[link-changelog]: https://github.com/rougin/dexter/blob/master/CHANGELOG.md\n[link-contributing]: https://github.com/rougin/dexter/blob/master/CONTRIBUTING.md\n[link-contributors]: https://github.com/rougin/dexter/contributors\n[link-coverage]: https://app.codecov.io/gh/rougin/dexter\n[link-downloads]: https://packagist.org/packages/rougin/dexter\n[link-license]: https://github.com/rougin/dexter/blob/master/LICENSE.md\n[link-packagist]: https://packagist.org/packages/rougin/dexter\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frougin%2Fdexter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frougin%2Fdexter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frougin%2Fdexter/lists"}