See https://codeigniter4.github.io/CodeIgniter4/installation/running.html#id4
When I navigate to http://localhost/ci4/users/, I am redirected to http://localhost/ci4/public/users.
See https://codeigniter4.github.io/CodeIgniter4/installation/running.html#id4
When I navigate to http://localhost/ci4/users/, I am redirected to http://localhost/ci4/public/users.
Important
CodeIgniter 4.5.0 has CORS filter. See https://codeigniter4.github.io/userguide/libraries/cors.html
| Test 'CodeIgniter\API\ResponseTraitTest::testNoFormatterJSON' started | |
| Test 'CodeIgniter\API\ResponseTraitTest::testNoFormatterJSON' ended | |
| Test 'CodeIgniter\API\ResponseTraitTest::testNoFormatter' started | |
| Test 'CodeIgniter\API\ResponseTraitTest::testNoFormatter' ended | |
| Test 'CodeIgniter\API\ResponseTraitTest::testAssociativeArrayPayload' started | |
| Test 'CodeIgniter\API\ResponseTraitTest::testAssociativeArrayPayload' ended | |
| Test 'CodeIgniter\API\ResponseTraitTest::testArrayPayload' started | |
| Test 'CodeIgniter\API\ResponseTraitTest::testArrayPayload' ended | |
| Test 'CodeIgniter\API\ResponseTraitTest::testPHPtoArrayPayload' started | |
| Test 'CodeIgniter\API\ResponseTraitTest::testPHPtoArrayPayload' ended |
| URL_COMP="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash" | |
| URL_PROMPT="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh" | |
| #PROFILE="$HOME/.profile" | |
| PROFILE="$HOME/.bash_profile" | |
| #PROFILE="$HOME/.bash_aliases" | |
| echo "Downloading git-completion..." | |
| if ! curl "$URL_COMP" --silent --output "$HOME/.git-completion.bash"; then | |
| echo "ERROR: Couldn't download completion script. Make sure you have a working internet connection." && exit 1 |
| <?php | |
| class TennisGame1 implements TennisGame | |
| { | |
| private $m_score1 = 0; | |
| private $m_score2 = 0; | |
| private $player1Name = ''; | |
| private $player2Name = ''; |
| diff --git a/.travis.yml b/.travis.yml | |
| index 7ea66ae..dc1f64c 100644 | |
| --- a/.travis.yml | |
| +++ b/.travis.yml | |
| @@ -3,6 +3,7 @@ php: | |
| - 5.3 | |
| - 5.4 | |
| - 5.5 | |
| + - 7.0 | |
| diff -uwbrN CodeIgniter-3.0.0/.gitignore CodeIgniter-3.0.1/.gitignore | |
| --- CodeIgniter-3.0.0/.gitignore 1970-01-01 09:00:00.000000000 +0900 | |
| +++ CodeIgniter-3.0.1/.gitignore 2015-08-07 20:31:33.000000000 +0900 | |
| @@ -0,0 +1,27 @@ | |
| +.DS_Store | |
| + | |
| +application/cache/* | |
| +!application/cache/index.html | |
| +!application/cache/.htaccess | |
| + |
--- a/composer.json
+++ b/composer.json
@@ -11,7 +11,20 @@
{ "type": "vcs", "url": "https://github.com/fuel/email" },
{ "type": "vcs", "url": "https://github.com/fuel/oil" },
{ "type": "vcs", "url": "https://github.com/fuel/orm" },
- { "type": "vcs", "url": "https://github.com/fuel/parser" }
+ { "type": "vcs", "url": "https://github.com/fuel/parser" },
+ {