{"id":36994750,"url":"https://github.com/dappur/dapp","last_synced_at":"2026-01-13T23:47:01.234Z","repository":{"id":56962326,"uuid":"89194911","full_name":"dappur/dapp","owner":"dappur","description":"Command line interface for the Dappur PHP Framework","archived":false,"fork":false,"pushed_at":"2018-10-11T22:49:11.000Z","size":72,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-09-21T11:39:47.434Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/dappur.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-04-24T03:41:05.000Z","updated_at":"2018-10-11T22:47:58.000Z","dependencies_parsed_at":"2022-08-21T09:50:13.114Z","dependency_job_id":null,"html_url":"https://github.com/dappur/dapp","commit_stats":null,"previous_names":[],"tags_count":7,"template":null,"template_full_name":null,"purl":"pkg:github/dappur/dapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dappur%2Fdapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dappur%2Fdapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dappur%2Fdapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dappur%2Fdapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dappur","download_url":"https://codeload.github.com/dappur/dapp/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dappur%2Fdapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2026-01-13T23:47:01.175Z","updated_at":"2026-01-13T23:47:01.229Z","avatar_url":"https://github.com/dappur.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dApp\n\nThis is the command line interface for the [Dappur PHP Framework](https://github.com/dappur/framework)\n\n## Pre-Requisites\n[Composer](https://getcomposer.org/) - Dependency manager is required in order to use the Dappur PHP Framework.  [Installation Instructions](https://getcomposer.org/doc/00-intro.md)\n\n[Phinx](https://phinx.org/) - Phinx is required in order to utilize the database migrations.  It is recommended that you install Phinx globally via composer by running:\n\n    $ composer global require robmorgan/phinx\n\n## Installation\n\n    $ composer global require dappur/dapp\n\n## Usage\n### `new`\nThis command creates a new Dappur application in the specified folder using the composer `create-project` command.\n- **name** - The folder name for your new appliciation.\n- **--theme -t (Optional)** - Install a custom frontend theme from a git repo. Default: `git@github.com:dappur/theme-dappur.git`\n- **--dashboard -d (Optional)** - Install a custom dashboard theme from a git repo. Default: `git@github.com:dappur/theme-AdminLTE.git`\n- **--vagrant (Optional)** - If set, runs `vagrant up` when installation is complete. Default: `false`\n```\n$ dapp new name (--theme=THEME_REPO --dashboard=THEME_REPO --vagrant)\n```\n\n### `theme`\nThis command allows you to install official and custom themes from git repositories.\n- **url (Optional)** - Git repo url for the theme that you wish to install.  If no url is set, you will be presented a list of official themes to install.\n- **--download-only (Optional)** - If set, the theme will be copied into the view folder, but the database will not be updated.\n```\n$ dapp theme (url --download-only)\n```\n\n### `controller`\nThis command generated a new controller class in `app/src/Controller` as well as having the controller automatically added to the container dependencies with an entry in `app/src/bootstrap/controllers.php`\n- **name** - The name of your controller class in `PascalCase` format.  This command also supports generating nested class names, i.e. `NewController\\SubController`.\n```\n$ dapp controller name\n```\n\n### `app`\nThis command generated a new App class template in `app/src/App` using the class name that you specify.\n- **name** - The name of your class in `PascalCase` format.  This command also supports generating nested class names, i.e. `NewController\\SubController`.\n```\n$ dapp app name\n```\n\n### `middleware`\nThis command generated a new App class template in `app/src/Middleware` using the class name that you specify.\n- **name** - The name of your class in `PascalCase` format.  This command also supports generating nested class names, i.e. `MyMiddleware\\SubMiddleware`.\n```\n$ dapp middleware name\n```\n\n### `twigex`\nThis command generated a new App class template in `app/src/TwigExtensions` using the class name that you specify.\n- **name** - The name of your class in `PascalCase` format.  This command also supports generating nested class names, i.e. `MainExtension\\SubExtension`.\n```\n$ dapp twigex name\n```\n\n### `server`\nThis command launches an instance of PHP's built-in web server, `php -S` defaulted to port 8181.\n- **port (Optional)** - Port to run the web server on.  Default is 8181.\n```\n$ dapp server (port=PORT)\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdappur%2Fdapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdappur%2Fdapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdappur%2Fdapp/lists"}