Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 1 | ################### |
| 2 | What is CodeIgniter |
| 3 | ################### |
| 4 | |
| 5 | CodeIgniter is an Application Development Framework - a toolkit - for people |
| 6 | who build web sites using PHP. Its goal is to enable you to develop projects |
| 7 | much faster than you could if you were writing code from scratch, by providing |
| 8 | a rich set of libraries for commonly needed tasks, as well as a simple |
| 9 | interface and logical structure to access these libraries. CodeIgniter lets |
| 10 | you creatively focus on your project by minimizing the amount of code needed |
| 11 | for a given task. |
| 12 | |
| 13 | ******************* |
| 14 | Release Information |
| 15 | ******************* |
| 16 | |
James Swift | 3b96a17 | 2013-08-23 23:13:07 +0100 | [diff] [blame] | 17 | This repo contains in-development code for future releases. To download the |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 18 | latest stable release please visit the `CodeIgniter Downloads |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 19 | <https://codeigniter.com/download>`_ page. |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 20 | |
| 21 | ************************** |
| 22 | Changelog and New Features |
| 23 | ************************** |
| 24 | |
| 25 | You can find a list of all changes for each release in the `user |
Bo-Yi Wu | 9f8a5f0 | 2014-10-25 13:34:10 +0800 | [diff] [blame] | 26 | guide change log <https://github.com/bcit-ci/CodeIgniter/blob/develop/user_guide_src/source/changelog.rst>`_. |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 27 | |
| 28 | ******************* |
| 29 | Server Requirements |
| 30 | ******************* |
| 31 | |
Claudio Galdiolo | 606ad65 | 2016-07-07 15:32:12 -0400 | [diff] [blame] | 32 | PHP version 5.6 or newer is recommended. |
Andrey Andreev | 934d6d9 | 2015-01-12 15:03:10 +0200 | [diff] [blame] | 33 | |
Andrey Andreev | 54f6a09 | 2016-07-26 20:21:39 +0300 | [diff] [blame] | 34 | It should work on 5.3.7 as well, but we strongly advise you NOT to run |
Andrey Andreev | 934d6d9 | 2015-01-12 15:03:10 +0200 | [diff] [blame] | 35 | such old versions of PHP, because of potential security and performance |
| 36 | issues, as well as missing features. |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 37 | |
| 38 | ************ |
| 39 | Installation |
| 40 | ************ |
| 41 | |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 42 | Please see the `installation section <https://codeigniter.com/user_guide/installation/index.html>`_ |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 43 | of the CodeIgniter User Guide. |
| 44 | |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 45 | ******* |
| 46 | License |
| 47 | ******* |
| 48 | |
| 49 | Please see the `license |
Andrey Andreev | dc63a02 | 2014-10-28 00:27:40 +0200 | [diff] [blame] | 50 | agreement <https://github.com/bcit-ci/CodeIgniter/blob/develop/user_guide_src/source/license.rst>`_. |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 51 | |
| 52 | ********* |
| 53 | Resources |
| 54 | ********* |
| 55 | |
Andrey Andreev | bd202c9 | 2016-01-11 12:50:18 +0200 | [diff] [blame] | 56 | - `User Guide <https://codeigniter.com/docs>`_ |
Master Yoda | 7762c59 | 2015-03-06 16:08:59 -0800 | [diff] [blame] | 57 | - `Language File Translations <https://github.com/bcit-ci/codeigniter3-translations>`_ |
Bo-Yi Wu | 9f8a5f0 | 2014-10-25 13:34:10 +0800 | [diff] [blame] | 58 | - `Community Forums <http://forum.codeigniter.com/>`_ |
| 59 | - `Community Wiki <https://github.com/bcit-ci/CodeIgniter/wiki>`_ |
Instructor, Computer Systems Technology | 1d9e296 | 2017-07-26 21:42:14 -0700 | [diff] [blame] | 60 | - `Community Slack Channel <https://codeigniterchat.slack.com>`_ |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 61 | |
Andrey Andreev | b2d2535 | 2015-10-23 14:11:47 +0300 | [diff] [blame] | 62 | Report security issues to our `Security Panel <mailto:security@codeigniter.com>`_ |
| 63 | or via our `page on HackerOne <https://hackerone.com/codeigniter>`_, thank you. |
Master Yoda | 7762c59 | 2015-03-06 16:08:59 -0800 | [diff] [blame] | 64 | |
Derek Jones | f4a4bd8 | 2011-10-20 12:18:42 -0500 | [diff] [blame] | 65 | *************** |
| 66 | Acknowledgement |
| 67 | *************** |
| 68 | |
Master Yoda | 7762c59 | 2015-03-06 16:08:59 -0800 | [diff] [blame] | 69 | The CodeIgniter team would like to thank EllisLab, all the |
Claudio Galdiolo | 606ad65 | 2016-07-07 15:32:12 -0400 | [diff] [blame] | 70 | contributors to the CodeIgniter project and you, the CodeIgniter user. |