Skip to content

Commit 0f0706b

Browse files
committed
Fixes in the readme and composer files.
1 parent 2bb8262 commit 0f0706b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: README.md

+4-4
Original file line numberDiff line numberDiff 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
8282
use PhpMvc\AppBuilder;

Diff for: composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

0 commit comments

Comments
 (0)