From 761aaa7fa627992513fdd4ff6fd6322391bdc553 Mon Sep 17 00:00:00 2001 From: Johnny Huynh <27847622+johnnyhuy@users.noreply.github.com> Date: Mon, 6 Jan 2020 10:05:54 +1300 Subject: [PATCH] Removed Laravel stuff from readme --- README.md | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/README.md b/README.md index ace3e0d..47c17d4 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,6 @@ A Laravel PHP Composer packaged of useful CommonMark extensions for The PHP Leag - [Installation](#installation) - [Installing the Composer package](#installing-the-composer-package) - [Adding the Markdown extension to a config](#adding-the-markdown-extension-to-a-config) - - [(Optional) Adding the service provider to app config](#optional-adding-the-service-provider-to-app-config) - [Running the tests](#running-the-tests) - [Wiki](#wiki) - [Markdown features](#markdown-features) @@ -59,18 +58,6 @@ Add `JohnnyHuy\Laravel\UsefulCommonMarkExtension::class` in `config/markdown.php ], ``` -#### (Optional) Adding the service provider to app config - -If automatic package discovery is not enabled in your project, add the following line to register the service provider in your `config/app.php`. Here's an example: - -```php -'providers' => [ - ... - JohnnyHuy\Laravel\UsefulCommonMarkExtensionServiceProvider::class, - ... -], -``` - ## Running the tests Clone this repository and run `composer install` to install all relevant Composer packages. Change the root extension directory and run the following command to execute PHPUnit test cases.