{"id":14966327,"url":"https://github.com/yiisoft/yii2-app-advanced","last_synced_at":"2025-05-15T00:03:54.696Z","repository":{"id":10951738,"uuid":"13261856","full_name":"yiisoft/yii2-app-advanced","owner":"yiisoft","description":"Yii 2.0 Advanced Application Template","archived":false,"fork":false,"pushed_at":"2025-02-13T20:32:37.000Z","size":1639,"stargazers_count":1668,"open_issues_count":5,"forks_count":1275,"subscribers_count":176,"default_branch":"master","last_synced_at":"2025-05-07T23:30:43.654Z","etag":null,"topics":["hacktoberfest","project-template","yii","yii2"],"latest_commit_sha":null,"homepage":"http://www.yiiframework.com","language":"PHP","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/yiisoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"open_collective":"yiisoft","tidelift":"packagist/yiisoft/yii2-app-advanced"}},"created_at":"2013-10-02T03:18:28.000Z","updated_at":"2025-05-02T21:17:25.000Z","dependencies_parsed_at":"2025-04-19T18:28:36.777Z","dependency_job_id":"a6e53564-0cd6-40ba-b225-445a7ec44545","html_url":"https://github.com/yiisoft/yii2-app-advanced","commit_stats":{"total_commits":880,"total_committers":161,"mean_commits":5.46583850931677,"dds":0.6795454545454546,"last_synced_commit":"386378f2e276621081b76fd43a3f0daefd66b8fa"},"previous_names":[],"tags_count":45,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yiisoft%2Fyii2-app-advanced","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yiisoft%2Fyii2-app-advanced/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yiisoft%2Fyii2-app-advanced/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yiisoft%2Fyii2-app-advanced/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yiisoft","download_url":"https://codeload.github.com/yiisoft/yii2-app-advanced/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254249199,"owners_count":22039029,"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":["hacktoberfest","project-template","yii","yii2"],"created_at":"2024-09-24T13:36:13.366Z","updated_at":"2025-05-15T00:03:54.629Z","avatar_url":"https://github.com/yiisoft.png","language":"PHP","funding_links":["https://opencollective.com/yiisoft","https://tidelift.com/funding/github/packagist/yiisoft/yii2-app-advanced"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/yiisoft\" target=\"_blank\"\u003e\n        \u003cimg src=\"https://avatars0.githubusercontent.com/u/993323\" height=\"100px\"\u003e\n    \u003c/a\u003e\n    \u003ch1 align=\"center\"\u003eYii 2 Advanced Project Template\u003c/h1\u003e\n    \u003cbr\u003e\n\u003c/p\u003e\n\nYii 2 Advanced Project Template is a skeleton [Yii 2](https://www.yiiframework.com/) application best for\ndeveloping complex Web applications with multiple tiers.\n\nThe template includes three tiers: front end, back end, and console, each of which\nis a separate Yii application.\n\nThe template is designed to work in a team development environment. It supports\ndeploying the application in different environments.\n\nDocumentation is at [docs/guide/README.md](docs/guide/README.md).\n\n[![Latest Stable Version](https://img.shields.io/packagist/v/yiisoft/yii2-app-advanced.svg)](https://packagist.org/packages/yiisoft/yii2-app-advanced)\n[![Total Downloads](https://img.shields.io/packagist/dt/yiisoft/yii2-app-advanced.svg)](https://packagist.org/packages/yiisoft/yii2-app-advanced)\n[![build](https://github.com/yiisoft/yii2-app-advanced/workflows/build/badge.svg)](https://github.com/yiisoft/yii2-app-advanced/actions?query=workflow%3Abuild)\n\nDIRECTORY STRUCTURE\n-------------------\n\n```\ncommon\n    config/              contains shared configurations\n    mail/                contains view files for e-mails\n    models/              contains model classes used in both backend and frontend\n    tests/               contains tests for common classes    \nconsole\n    config/              contains console configurations\n    controllers/         contains console controllers (commands)\n    migrations/          contains database migrations\n    models/              contains console-specific model classes\n    runtime/             contains files generated during runtime\nbackend\n    assets/              contains application assets such as JavaScript and CSS\n    config/              contains backend configurations\n    controllers/         contains Web controller classes\n    models/              contains backend-specific model classes\n    runtime/             contains files generated during runtime\n    tests/               contains tests for backend application    \n    views/               contains view files for the Web application\n    web/                 contains the entry script and Web resources\nfrontend\n    assets/              contains application assets such as JavaScript and CSS\n    config/              contains frontend configurations\n    controllers/         contains Web controller classes\n    models/              contains frontend-specific model classes\n    runtime/             contains files generated during runtime\n    tests/               contains tests for frontend application\n    views/               contains view files for the Web application\n    web/                 contains the entry script and Web resources\n    widgets/             contains frontend widgets\nvendor/                  contains dependent 3rd-party packages\nenvironments/            contains environment-based overrides\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyiisoft%2Fyii2-app-advanced","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyiisoft%2Fyii2-app-advanced","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyiisoft%2Fyii2-app-advanced/lists"}