{"id":18509179,"url":"https://github.com/rindow/skeleton-fullfeatures-demo","last_synced_at":"2026-02-12T03:14:05.698Z","repository":{"id":57047236,"uuid":"256641994","full_name":"rindow/skeleton-fullfeatures-demo","owner":"rindow","description":"Rindow PHP Application Skeleton with full features","archived":false,"fork":false,"pushed_at":"2024-10-01T16:38:54.000Z","size":1556,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-04T13:47:52.076Z","etag":null,"topics":["framework","php","skeleton"],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rindow.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":"2020-04-18T00:59:25.000Z","updated_at":"2024-10-01T16:38:58.000Z","dependencies_parsed_at":"2025-04-09T03:42:35.384Z","dependency_job_id":null,"html_url":"https://github.com/rindow/skeleton-fullfeatures-demo","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/rindow/skeleton-fullfeatures-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rindow%2Fskeleton-fullfeatures-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rindow%2Fskeleton-fullfeatures-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rindow%2Fskeleton-fullfeatures-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rindow%2Fskeleton-fullfeatures-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rindow","download_url":"https://codeload.github.com/rindow/skeleton-fullfeatures-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rindow%2Fskeleton-fullfeatures-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29356168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-12T01:03:07.613Z","status":"online","status_checked_at":"2026-02-12T02:00:06.911Z","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":["framework","php","skeleton"],"created_at":"2024-11-06T15:16:43.240Z","updated_at":"2026-02-12T03:14:05.683Z","avatar_url":"https://github.com/rindow.png","language":"CSS","readme":"Rindow PHP Application Skeleton\n===============================\nThis is a web application skeleton for Rindow PHP Application Framework.\nYou can make your new application with this skeleton.\n\nThe Rindow Framework is a PHP Application Framework that provides a modern programming and configuration model to all PHP programmers. Please see [The Rindow Framework](https://rindow.github.io).\n\nApplication Skeleton Types\n--------------------------\nYou can choose skeleton type.\n- Standard Application Skeleton.(*This skeleton*)\n    - A typical web Application and command line application uses template engine and database to the Rindow Framework.\n- Minimum Web Application Skeleton.([Get a mini app from here](https://github.com/rindow/skeleton-mini-webappl))\n    - The minimal application skeleton contains nothing more than displaying a web page.\n\n### Features of Standard Application Skeleton\nYou'll be able to choose the platform you want to use, as well as the features you will use most often.\n\n- Inverse of control\n    - Inverse of control programming is actually demonstrated by the application.\n    - Flexible module exchange is possible by dependency injection and configuration injection.\n\n- Annotation based configuration\n    - The definition of Components, Controller, Transaction, Validation, Forms etc. is set to annotation base.\n\n- Template Engine Manager\n    - Includes separate samples for you to choose between Twig, Smarty and PHP. You can switch by setting.\n    - We have already prepared Bootstrap, Foundation and Material Design Lite templates so you can start using them right away. This can also be switched by setting.\n\n- Databases\n    - Database can be used by switching between SQL Database (SQLite, MySQL, PostgreSQL), MongoDB and Google Cloud Datastore.\n    - The access method from the application adopts the standard Repository method by declarative transaction. For the ORM method, another skeleton will be prepared.\n\n- Access control\n    - Includes sample user authentication and access control on web applications.\n    - Although Rindow Framework access control is available for all applications, not just web-based, this sample demonstrates access control for web applications using forms authentication.\n\n- REST Api application\n    - A REST Api application sample is included with Vue.js.\n\n- Command line application\n    - A command line application sample is included for database maintenance.\n\n\nRequirements\n------------\nThis sample was created for PHP 7.2 and later.\n\nHowever, Rindow Framework supports PHP 5.3.3 and later.\nYou can use the same features of Rindow Framework by rewriting only the sample code for PHP 5.x.\n\nInstalling\n----------\n### Using Composer(*recommend*)\nIf you do not have Composer, download it from http://getcomposer.org/ or\njust run the following command:\n\n```\n$ php -r \"readfile('https://getcomposer.org/installer');\" | php\n```\n\nThen, generate a new project of the Application Skeleton with `create-project` command:\n\n```\n  php composer.phar create-project rindow/skeleton-fullfeatures-demo path/to/install\n```\n\nComposer will install Rindow Web Application Skeleton and components that depend on it under path/to/install directory.\n\n### Download from Github\nAlso you can download it directly from github.\n\n```\n  $ git clone https://github.com/rindow/skeleton-fullfeatures-demo path/to/install\n  $ cd path/to/install\n  $ composer update\n```\n\nSetup and Run skeleton application\n--------------------------\nSetup database.\nSQLite is set by default.\n```\n    $ cd path/to/install\n    $ bin/myapp create-schema\n```\nor After finishing the database setup...\n```\n    $ bin/myapp create-schema -s | mysql -u username -p database_name\n```\n(Database settings are described in config/local/database.sql.php.disable.)\n\nSetup users for protected pages.\n```\n    $ bin/myapp user-add -p password test@test.com\n```\n\nRun the application.\n```\n    $ php -S localhost:8000 -t public\n```\n\nThe sample is now running. Access http://localhost:8000/ with a web browser.\n\nChange settings\n---------------\nWe have prepared a template of the changes so that you can easily change the settings. Please enable each setting under config/local/\n\nThe settings are compiled and saved. You must clear the cache after changing the settings. Script is prepared in the sample.\nIf you are using a memory cache such as APCu, also clear the memory cache.\n\nIf you change the version item in the module_manager section of webapp.config.php, the cache will be cleared automatically.\n\n### Change pages theme\n```\n    $ mv config/local/theme.mdl.local.php.disable config/local/theme.mdl.local.php\n    $ bin/cache-clear\n```\n\n### Change template engine\n```\n    $ mv config/local/template.smarty.local.php.disable config/local/template.smarty.local.php\n    $ bin/cache-clear\n```\n\n### Change database platform\n```\n    $ mv config/local/database.mongodb.local.php.disable config/local/database.mongodb.local.php\n    $ bin/cache-clear\n```\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frindow%2Fskeleton-fullfeatures-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frindow%2Fskeleton-fullfeatures-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frindow%2Fskeleton-fullfeatures-demo/lists"}