承接 trinet/codeigniter-skeleton 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

trinet/codeigniter-skeleton

最新稳定版本:v1.1.0

Composer 安装命令:

composer require trinet/codeigniter-skeleton

包简介

CodeIgniter Composer Skeleton

README 文档

README

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.

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.

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:

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

统计信息

  • 总下载量: 43
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 3
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 2
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-01-12