File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ The best implementation of the **Model-View-Controller** architectural pattern i
2222## Installation
2323
2424```
25- $ composer require meet-aleksey /php-mvc
25+ $ composer require php-mvc-project /php-mvc
2626```
2727
2828## Server Configuration
@@ -35,11 +35,11 @@ The server must send the entire request to the `./index.php` file.
3535<IfModule mod_rewrite.c>
3636 RewriteEngine On
3737
38- # Redirect /index.php to /
38+ # redirect /index.php to /
3939 RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /.*index\.php
4040 RewriteRule ^index.php/?(.*)$ $1 [R=301,L]
4141
42- # Run everything else but real files through index.php
42+ # process all requests through index.php, except for actually existing files
4343 RewriteCond %{REQUEST_FILENAME} !-d
4444 RewriteCond %{REQUEST_FILENAME} !-f
4545 RewriteRule ^(.*)$ index.php/$1?%{QUERY_STRING} [QSA,L]
@@ -76,7 +76,7 @@ Create the following structure in the project root directory:
7676``` php
7777<?php
7878// include PhpMvc
79- require_once __DIR__ . '/vendor/meet-aleksey /php-mvc/src/index.php';
79+ require_once __DIR__ . '/vendor/php-mvc-project /php-mvc/src/index.php';
8080
8181// import the AppBuilder class
8282use PhpMvc\AppBuilder;
Original file line number Diff line number Diff line change 11{
2- "name" : " meet-aleksey /php-mvc" ,
3- "description" : " Implementation of MVC in PHP." ,
2+ "name" : " php-mvc-project /php-mvc" ,
3+ "description" : " Implementation of the MVC (Model-View-Controller) architectural pattern in PHP." ,
44 "keywords" : [" mvc" ],
55 "license" : " MIT" ,
66 "type" : " library" ,
You can’t perform that action at this time.
0 commit comments