{"id":13678347,"url":"https://github.com/mouadziani/Larabye","last_synced_at":"2025-04-29T13:30:37.033Z","repository":{"id":122166787,"uuid":"165935392","full_name":"mouadziani/Larabye","owner":"mouadziani","description":"🎉 Larabye (Laravel + Rockabye) is a mini PHP starter / framework inspired from laravel features","archived":true,"fork":false,"pushed_at":"2021-03-08T23:49:50.000Z","size":1463,"stargazers_count":31,"open_issues_count":6,"forks_count":3,"subscribers_count":5,"default_branch":"master","last_synced_at":"2024-08-02T13:22:01.490Z","etag":null,"topics":["mini-framework","mvc-framework","php","rockabye","starter"],"latest_commit_sha":null,"homepage":"","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/mouadziani.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"custom":["https://www.paypal.me/MouadZIANI"]}},"created_at":"2019-01-15T22:47:22.000Z","updated_at":"2023-01-28T08:51:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"fa8e8960-05a6-4089-93ef-0d06c68aeebe","html_url":"https://github.com/mouadziani/Larabye","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouadziani%2FLarabye","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouadziani%2FLarabye/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouadziani%2FLarabye/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mouadziani%2FLarabye/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mouadziani","download_url":"https://codeload.github.com/mouadziani/Larabye/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224173796,"owners_count":17268180,"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":["mini-framework","mvc-framework","php","rockabye","starter"],"created_at":"2024-08-02T13:00:52.592Z","updated_at":"2024-11-11T20:31:27.258Z","avatar_url":"https://github.com/mouadziani.png","language":"PHP","funding_links":["https://www.paypal.me/MouadZIANI"],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# 🎉 Larabye 🎉\n[![PHP Min](https://img.shields.io/badge/PHP-%3E%3D%205.3-blue.svg)](https://github.com/php)\n[![GitHub license](https://img.shields.io/github/license/nhn/tui.calendar.svg)](https://github.com/MouadZIANI/Larabye/blob/master/LICENSE)\n[![PRs welcome](https://img.shields.io/badge/PRs-welcome-ff69b4.svg)](https://github.com/mouadziani/Larabye/labels/help%20wanted)\n[![code with hearth by ZIANI Mouad (ROMAC)](https://img.shields.io/badge/%3C%2F%3E%20with%20%E2%99%A5%20by-ZIANI-ff1414.svg)](https://github.com/mouadziani)\n\nLarabye is a mini PHP framework inspired from laravel features, created by **Mouad ZIANI (ROMAC)** \n# Installation\n### Requirements\n- PHP \u003e= 7.2\n- mod_rewrite enabled\n- Composer installed\n### Download\nClone \u003ccode\u003e$ git clone https://github.com/mouadziani/Larabye.git\u003c/code\u003e or download the zip folder.\n### Setup\nif you used the the download button unzip the folder and then open it, you can use the following commands if you like terminal:\n\n      $ cd Larabye-master  \n\nThen run composer to install dependecies\n\n      $/ Larabye-master composer install  \n\nNow it's all done, you only need to create a database and change configurations in **app/config.php** to match your server's configuration, for example:\n\n```php                     \n    /*\n    * Database Configuration\n    */\n    $dbName   = 'larabye_db';\n    $host     = 'localhost';\n    $userName = 'root';\n    $password = 'root';\n```\n\n# Architecture\nLarabye is easy to use and understand, if you still have a doubt about how PHP/MVC works, you can use this framework to give you a push forward.\n\n```bash\n    ├── app\n    │   ├── controllers\n    │   │   ├── HomeController.php\n    │   │   └── UserController.php\n    │   ├── core\n    │   │   ├── App.php\n    │   │   └── Controller.php\n    │   ├── helpers\n    │   │   ├── Dao.php\n    │   │   └── helper.php\n    │   ├── models\n    │   │   └── User.php\n    │   ├── views\n    │   │   ├── partials\n    │   │   │   ├── _header.php\n    │   │   │   ├── _footer.php\n    │   │   │   └── _sub_footer.php\n    │   │   ├── users\n    │   │   │   ├── index.php\n    │   │   │   ├── create.php\n    │   │   │   └── edit.php\n    │   │   └── home.php\n    │   ├── init.php\n    │   ├── database.php\n    │   └── .htaccess\n    ├── composer.json\n    ├── public\n    │   ├── css\n    │   │   └── *.css\n    │   ├── fonts/..\n    │   ├── imgs/..\n    │   ├── js\n    │   │   └── *.\n    │   ├── .htaccess\n    │   └── index.php\n    ├── .gitignore\n    ├── composer.json\n    ├── LICENCE\n    └── README.md\n```      \n\n## License\nLarabye is licensed under the [MIT](LICENSE) license.\n\n## Note \nThis project was made for 8.19\n\nfeautred_repository\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmouadziani%2FLarabye","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmouadziani%2FLarabye","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmouadziani%2FLarabye/lists"}