dev-master
9999999-devCodeIgniter Composer Skeleton
MIT
The Development Requires
v1.1.0
1.1.0.0CodeIgniter Composer Skeleton
MIT
The Development Requires
v1.0.0
1.0.0.0CodeIgniter Composer Skeleton
MIT
The Development Requires
Wallogit.com
2017 © Pedro Peláez
CodeIgniter Composer Skeleton
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)
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)
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>
CodeIgniter Composer Skeleton
MIT
CodeIgniter Composer Skeleton
MIT
CodeIgniter Composer Skeleton
MIT