2017 © Pedro Peláez
 

library codeigniter-skeleton

CodeIgniter Composer Skeleton

image

trinet/codeigniter-skeleton

CodeIgniter Composer Skeleton

  • Monday, January 12, 2015
  • by trinet
  • Repository
  • 2 Watchers
  • 1 Stars
  • 28 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

CodeIgniter Skeleton Application for Composer

This repository is a wrapper to use CodeIgniter 3.* (currently develop) as vendor package with Composer. Also, a few enhancements were made for better Git support (e.g. environment as separate file) The document root has been moved to the pubic/ directory, so that vendor and application data is not accessible via URL., (*1)

How to install:

  • Download/install Composer
  • Create a new project with php composer.phar create-project -s dev trinet/codeigniter-skeleton [path]

Composer gets the current CodeIgniter version and then copies the application/ directory to the project root. You can then git init your project., (*2)

Webserver configuration

The document root has to point to the public/ directory of the project. For example, if you use Apache, your vhost configuration can look like:, (*3)

<VirtualHost *:80>
    ServerAdmin admin@example.com

    ServerName codeigniter.example.com
    DocumentRoot /var/www/my-codeigniter-project/public

    <Directory "/var/www/my-codeigniter-project/">
            Deny from all
    </Directory>

    <Directory "/var/www/my-codeigniter-project/public/">
            Allow from all
            Options -Indexes +FollowSymLinks -MultiViews
            AllowOverride all
    </Directory>
</VirtualHost>

The Versions

12/01 2015

dev-master

9999999-dev

CodeIgniter Composer Skeleton

  Sources   Download

MIT

The Development Requires

12/01 2015

v1.1.0

1.1.0.0

CodeIgniter Composer Skeleton

  Sources   Download

MIT

The Development Requires

12/01 2015

v1.0.0

1.0.0.0

CodeIgniter Composer Skeleton

  Sources   Download

MIT

The Development Requires