{"id":14965475,"url":"https://github.com/jvitasek/dumpanddie","last_synced_at":"2026-02-07T03:01:33.180Z","repository":{"id":57003401,"uuid":"355258416","full_name":"jvitasek/DumpAndDie","owner":"jvitasek","description":"☠️ DumpAndDie: Laravel's dd function ported to Nette Tracy","archived":false,"fork":false,"pushed_at":"2021-05-06T06:17:15.000Z","size":8,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-29T12:33:33.055Z","etag":null,"topics":["nette","tracy-debugger"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jvitasek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-04-06T16:30:18.000Z","updated_at":"2024-01-12T12:28:09.000Z","dependencies_parsed_at":"2022-08-21T14:10:54.145Z","dependency_job_id":null,"html_url":"https://github.com/jvitasek/DumpAndDie","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/jvitasek/DumpAndDie","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvitasek%2FDumpAndDie","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvitasek%2FDumpAndDie/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvitasek%2FDumpAndDie/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvitasek%2FDumpAndDie/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jvitasek","download_url":"https://codeload.github.com/jvitasek/DumpAndDie/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvitasek%2FDumpAndDie/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29185110,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-07T00:44:15.062Z","status":"online","status_checked_at":"2026-02-07T02:00:07.217Z","response_time":63,"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":["nette","tracy-debugger"],"created_at":"2024-09-24T13:34:48.262Z","updated_at":"2026-02-07T03:01:33.152Z","avatar_url":"https://github.com/jvitasek.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DumpAndDie: Laravel dd() function in Tracy\n\n[![Total Downloads](https://poser.pugx.org/jvitasek/dumpanddie/downloads)](//packagist.org/packages/jvitasek/dumpanddie)\n[![Version](https://poser.pugx.org/jvitasek/dumpanddie/version)](//packagist.org/packages/jvitasek/dumpanddie)\n\ndd() is a function in Laravel used to dump one or more variables and die. This is the implementation supporting this functionality in the Tracy Panel (from Nette Framework debugger).\n\n## Installation\nThe best way to install jvitasek/DumpAndDie is using [Composer](http://getcomposer.org/):\n```sh\n$ composer require jvitasek/dumpanddie\n```\n\n## Usage in browser\n\n```php\n\u003c?php declare(strict_types = 1);\n\nuse Nette\\Application\\UI\\Presenter;\n\nfinal class TestPresenter extends Presenter {\n\n    public function actionDefault(): void\n    {\n        $price = 42;\n        $filename = sha1((string) ($price + time())) . '.log';\n        \n        // write this\n        dd($price, $filename);\n        \n        // instead of this\n        \\Tracy\\Debugger::barDump($price);\n        \\Tracy\\Debugger::barDump($filename);\n        die(1);\n    }\n\n}\n```\n\n## Usage in CLI\n\n```php\n\u003c?php declare(strict_types = 1);\n\nuse Tracy\\Debugger;\n\nrequire __DIR__ . '/../vendor/autoload.php';\nDebugger::enable(Debugger::DEVELOPMENT);\n$price = 42;\n$filename = sha1((string) ($price + time())) . '.log';\ndd($price, $filename);\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvitasek%2Fdumpanddie","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjvitasek%2Fdumpanddie","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvitasek%2Fdumpanddie/lists"}