Skip to content

Commit 0278a5c

Browse files
committed
Update docs for latest release
1 parent 7b75740 commit 0278a5c

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

docs/getting-started.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ If you are new to Laravel and Coilpack we strongly recommend you follow the rest
1313
```sh
1414
composer create-project --prefer-dist laravel/laravel project-name
1515
cd project-name
16-
composer require expressionengine/coilpack:0.x-dev
16+
composer require expressionengine/coilpack:1.x
1717
php artisan coilpack
1818
```
1919

@@ -34,7 +34,7 @@ To use Coilpack You will need a development environment with PHP >= 7.4.0 and Co
3434

3535
### Create A Laravel Project
3636

37-
```
37+
```sh
3838
composer create-project --prefer-dist laravel/laravel:^8.0 project-name
3939
```
4040

@@ -50,16 +50,24 @@ To do this run: `composer config platform.php 8.0` substituting `8.0` for the ve
5050

5151
### Configure your Laravel Project
5252

53-
Now that you have a Laravel Project setup it is a good time to edit the values in your `.env` file to reflect your setup. The `APP_URL` and `DB_*` variables are particularly important for later steps in the Coilpack setup.
53+
Now that you have a Laravel Project setup it is a good time to edit the values in your `.env` file to reflect your setup. The `APP_URL` and `DB_*` variables are particularly important for later steps in the Coilpack setup. The values you choose might look something like this:
54+
55+
```sh
56+
APP_URL=https://project-name.test
57+
DB_HOST=127.0.0.1
58+
DB_DATABASE=project_name_database
59+
DB_USERNAME=root
60+
DB_PASSWORD=
61+
```
5462

5563
### Require Coilpack
5664

5765
Inside of your Laravel project, you will need to update your project to use the Coilpack package.
5866

59-
```
67+
```sh
6068
cd project-name
6169

62-
composer require expressionengine/coilpack:0.x-dev
70+
composer require expressionengine/coilpack:1.x
6371
```
6472

6573
### Run Coilpack Setup
@@ -68,7 +76,7 @@ During the setup process you may choose to install a new copy of ExpressionEngin
6876

6977
From inside of your Laravel project, run the Coilpack setup.
7078

71-
```
79+
```sh
7280
php artisan coilpack
7381
```
7482

docs/index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
# Coilpack
22

3-
*Currently in Beta*
4-
53
Coilpack is a composer package that lets you harness the powerful Laravel ecosystem to bring your ExpressionEngine content forward in exciting new ways. Once installed in a standard Laravel application Coilpack loads ExpressionEngine and integrates many core services.
64

75
## Feature Highlights
@@ -15,7 +13,7 @@ Coilpack is a composer package that lets you harness the powerful Laravel ecosys
1513

1614
## Changelog
1715

18-
To view a list of changes in the project please visit the [current changelog](https://github.com/ExpressionEngine/Coilpack/blob/0.x/CHANGELOG.md).
16+
To view a list of changes in the project please visit the [current changelog](https://github.com/ExpressionEngine/Coilpack/blob/1.x/CHANGELOG.md).
1917

2018
## Frequently Asked Questions
2119

0 commit comments

Comments
 (0)