Download the PHP package rebekz/codeigniter_basic without Composer

On this page you can find all versions of the php package rebekz/codeigniter_basic. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package codeigniter_basic

Codeigniter Basic

Introduction

Repository ini untuk bahan membangun Web application berbasis PHP

Aplikasi ini menggunakan framework Codeigniter 3.0.1 modular dilengkapi dengan:

Aplikasi ini dibagi dua bagian: backend dan frontend yang bisa diakses:

Requirement:

  1. PHP
  2. MySQL
  3. Codeigniter 3
  4. Git

Installation

Step 1

Step 2

Structure

Struktur aplikasi:

    * public/admin
       *assets => untuk assets (js/css/img) backend/admin
    * public/assets => untuk assets (js/css/img) frontend
    * application 
        * back-modules => untuk module/halaman backend/admin
        * front-modules => untuk module/halaman frontend
        * views
           *admin
              *view => untuk tampilan/template backend/admin
           *front
              *view => untuk tampilan/template frontend
        * libraries => untuk memasukan library
        * models => untuk memasukan models

Struktur module/halaman

Setiap module/halaman dibuat dengan membuat folder yang didalamnya ada folder controllers, views Contoh module/halaman main. Struktur folder-nya:

    * main 
      * controllers => semua controllers untuk halaman main
      * views => semua view untuk halaman main

Migration

Untuk membuat schema database, bisa menggunakan fungsi migration di CI. untuk menambah/merubah schema database, buatlah suatu file di applications/migrations/ folder dan dinamai dengan format YYYYMMDDHHIISS_.php, dimana YYYYMMDDHHIISS adalah timestamp (20121031100537) migration. untuk contoh file migration bisa lihat fie 20150829163413_create_users_table.php.php

anda juga bisa generate file migration dengan menjalankan command

untuk jelasnya menggunakan migration bisa lihat tutorial : http://zacharyflower.com/2013/08/12/getting-started-with-codeigniter-migrations/

untuk migrate schema database ke versi baru dengan perintah

untuk mundur ke versi lama dengan perintah

Generate module

anda bisa membuat module baru melalui perintah

contoh:

Generate controller

anda bisa generate controller baru melalui perintah

contoh:

Generate view

anda bisa generate view baru melalui perintah

contoh:

Generate model

anda bisa generate model baru melalui perintah

contoh:

perintah lainnya bisa diliat di: https://github.com/avenirer/codeigniter-matches-cli

Resources

Codeiginiter with composer: https://github.com/kenjis/codeigniter-composer-installer

Website template : http://startbootstrap.com/template-overviews/sb-admin-2/

Dokumentasi Code Igniter: http://www.codeigniter.com/userguide3/index.html

Logs

v.0.1 = initial upload

v.0.2 = nambah migration dan generate module


All versions of codeigniter_basic with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.2
codeigniter/framework Version 3.0.*
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package rebekz/codeigniter_basic contains the following files

Loading the files please wait ....