You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Dotkernel API is a PHP skeleton app for building REST APIs using [Laminas](https://github.com/laminas) and [Mezzio](https://github.com/mezzio) components and implements standards like PSR-3, PSR-4, PSR-7, PSR-11 and PSR-15.
4
4
5
-
Dotkernel API is an alternative for legacy Laminas API Tools (formerly Apigility) applications, and is based on Enrico Zimuel's [Zend Expressive API - Skeleton example](https://github.com/ezimuel/zend-expressive-api).
5
+
Dotkernel API is an alternative for legacy Laminas API Tools (formerly Apigility) applications and is based on Enrico Zimuel's [Zend Expressive API - Skeleton example](https://github.com/ezimuel/zend-expressive-api).
6
6
7
7
> Live [demo](https://api.dotkernel.net/).
8
8
@@ -47,7 +47,7 @@ composer install
47
47
48
48
> **Do not enable development mode in production!**
49
49
50
-
If you're installing the project for development, you should **enable** development mode, by running:
50
+
If you're installing the project for development, you should **enable** development mode by running:
51
51
52
52
```shell
53
53
composer development-enable
@@ -59,17 +59,17 @@ You can **disable** development mode by running:
59
59
composer development-disable
60
60
```
61
61
62
-
You can **check** development status by running:
62
+
You can **check**the development status by running:
63
63
64
64
```shell
65
65
composer development-status
66
66
```
67
67
68
68
### Prepare config files
69
69
70
-
* duplicate `config/autoload/cors.local.php.dist` as `config/autoload/cors.local.php` <- if your API will be consumed by another application, make sure configure the `allowed_origins`
70
+
* duplicate `config/autoload/cors.local.php.dist` as `config/autoload/cors.local.php` <- if your API is consumed by another application, make sure configure the `allowed_origins`
71
71
* duplicate `config/autoload/local.php.dist` as `config/autoload/local.php`
72
-
***optional**: in order to run/create tests, duplicate `config/autoload/local.test.php.dist` as `config/autoload/local.test.php` <- this creates a new in-memory database that your tests will run on
72
+
***optional**: to run/create tests, duplicate `config/autoload/local.test.php.dist` as `config/autoload/local.test.php` <- this creates a new in-memory database that your tests will run on
73
73
74
74
### Setup database
75
75
@@ -120,7 +120,7 @@ More details on how fixtures work can be found in `dotkernel/dot-data-fixtures`
120
120
121
121
### Mail configuration
122
122
123
-
If your application will send emails, you must configure an outgoing mail server under `config/autoload/mail.global.php`.
123
+
If your application sends emails, you must configure an outgoing mail server under `config/autoload/mail.global.php`.
0 commit comments