All Projects β†’ MouadZIANI β†’ Larabye

MouadZIANI / Larabye

Licence: MIT license
πŸŽ‰ Larabye (Laravel + Rockabye) is a mini PHP starter / framework inspired from laravel features

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Larabye

vulkano
A small, simple and fast framework for creating web applications using NodeJS. Inspired by KumbiaPHP.
Stars: ✭ 15 (-51.61%)
Mutual labels:  mvc-framework
browser-extension
Browser Extension Template with ESbuild builds, support for React, Preact, Typescript, Tailwind, Manifest V3/V2 support and multi browser build including Chrome, Firefox, Safari, Edge, Brave.
Stars: ✭ 535 (+1625.81%)
Mutual labels:  starter
material2-admin
Angular - Material2 - Redux - Flex - Admin Example - Starter
Stars: ✭ 13 (-58.06%)
Mutual labels:  starter
vue-component-lib-starter
A bare-bones example of creating your own Vue component library.
Stars: ✭ 221 (+612.9%)
Mutual labels:  starter
gatsbyjs-starter-tailwindplay
GatsbyJS Tailwind Starter - TailwindPlay
Stars: ✭ 69 (+122.58%)
Mutual labels:  starter
velox
The minimal PHP micro-framework.
Stars: ✭ 55 (+77.42%)
Mutual labels:  mvc-framework
spring-boot-starter-smpp
Spring boot starter to send SMS via SMPP
Stars: ✭ 25 (-19.35%)
Mutual labels:  starter
node-red-node-typescript-starter
🏁 Quick-start template repository for creating new Node-RED node sets in TypeScript.
Stars: ✭ 64 (+106.45%)
Mutual labels:  starter
twitch-extension-starter
Kickstarts your Twitch Extension using React
Stars: ✭ 38 (+22.58%)
Mutual labels:  starter
create-react-app-starter
CRA + typeless starter
Stars: ✭ 21 (-32.26%)
Mutual labels:  starter
playground-for-beaver-themer
Simple bare-bone WordPress theme for Beaver Themer plugin.
Stars: ✭ 16 (-48.39%)
Mutual labels:  starter
eCommerce Shop
eCommerceShop renowned stylish, affordable, new and original fashion to you. our product mainly focuses on women wear’s, but it also offers men's apparel, children clothes, accessories, shoes, bags and other fashion items. BossKinds manufacture and supplier of leisurewear, workwear and school uniforms. we understood the importance of making good…
Stars: ✭ 26 (-16.13%)
Mutual labels:  mvc-framework
vital
Starter template for Vite with React (TypeScript). Supports Tailwind with CSS-Modules. Jest and @react/testing-library configured and ready to go. Also ESLint, Prettier, Husky, Commit-lint and Atomic Design for components.
Stars: ✭ 151 (+387.1%)
Mutual labels:  starter
nextjs-landing-starter
Build your landing site based on Next.JS in minutes πŸš€
Stars: ✭ 59 (+90.32%)
Mutual labels:  starter
vividus-starter
VIVIDUS-based test project template
Stars: ✭ 43 (+38.71%)
Mutual labels:  starter
react-redux-nextjs-bootstrap-starter
next + react + redux + bootstrap starter
Stars: ✭ 24 (-22.58%)
Mutual labels:  starter
php-mvc-framework
PHP MVC Framework - web application framework for modern and rapid development of web applications
Stars: ✭ 24 (-22.58%)
Mutual labels:  mvc-framework
sass-starter-pack
Sass starter files using Gulp v4.0.0 πŸ”₯
Stars: ✭ 34 (+9.68%)
Mutual labels:  starter
libgitlmvc
C++ MVC framework for Qt
Stars: ✭ 73 (+135.48%)
Mutual labels:  mvc-framework
frontenso-11ty-starter
Production-ready 11ty+Gulp+Webpack Starter that features Nunjucks, SASS, TailwindCSS (with JIT complier), and ESNext.
Stars: ✭ 24 (-22.58%)
Mutual labels:  starter

πŸŽ‰ Larabye πŸŽ‰

PHP Min GitHub license PRs welcome code with hearth by ZIANI Mouad (ROMAC)

Larabye is a mini PHP framework inspired from laravel features, created by Mouad ZIANI (ROMAC)

Installation

Requirements

  • PHP >= 7.2
  • mod_rewrite enabled
  • Composer installed

Download

Clone $ git clone https://github.com/mouadziani/Larabye.git or download the zip folder.

Setup

if you used the the download button unzip the folder and then open it, you can use the following commands if you like terminal:

  $ cd Larabye-master  

Then run composer to install dependecies

  $/ Larabye-master composer install  

Now 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:

    /*
    * Database Configuration
    */
    $dbName   = 'larabye_db';
    $host     = 'localhost';
    $userName = 'root';
    $password = 'root';

Architecture

Larabye 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.

    β”œβ”€β”€ app
    β”‚   β”œβ”€β”€ controllers
    β”‚   β”‚   β”œβ”€β”€ HomeController.php
    β”‚   β”‚   └── UserController.php
    β”‚   β”œβ”€β”€ core
    β”‚   β”‚   β”œβ”€β”€ App.php
    β”‚   β”‚   └── Controller.php
    β”‚   β”œβ”€β”€ helpers
    β”‚   β”‚   β”œβ”€β”€ Dao.php
    β”‚   β”‚   └── helper.php
    β”‚   β”œβ”€β”€ models
    β”‚   β”‚   └── User.php
    β”‚   β”œβ”€β”€ views
    β”‚   β”‚   β”œβ”€β”€ partials
    β”‚   β”‚   β”‚   β”œβ”€β”€ _header.php
    β”‚   β”‚   β”‚   β”œβ”€β”€ _footer.php
    β”‚   β”‚   β”‚   └── _sub_footer.php
    β”‚   β”‚   β”œβ”€β”€ users
    β”‚   β”‚   β”‚   β”œβ”€β”€ index.php
    β”‚   β”‚   β”‚   β”œβ”€β”€ create.php
    β”‚   β”‚   β”‚   └── edit.php
    β”‚   β”‚   └── home.php
    β”‚   β”œβ”€β”€ init.php
    β”‚   β”œβ”€β”€ database.php
    β”‚   └── .htaccess
    β”œβ”€β”€ composer.json
    β”œβ”€β”€ public
    β”‚   β”œβ”€β”€ css
    β”‚   β”‚   └── *.css
    β”‚   β”œβ”€β”€ fonts/..
    β”‚   β”œβ”€β”€ imgs/..
    β”‚   β”œβ”€β”€ js
    β”‚   β”‚   └── *.
    β”‚   β”œβ”€β”€ .htaccess
    β”‚   └── index.php
    β”œβ”€β”€ .gitignore
    β”œβ”€β”€ composer.json
    β”œβ”€β”€ LICENCE
    └── README.md

License

Larabye is licensed under the MIT license.

Note

This project was made for 8.19

feautred_repository

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].