Skip to content

Commit 43b7518

Browse files
authored
v2.0.0 (#2)
* Bump PHP version to 8.1. Update packages version. Add more configurations to the config file. * Fix issue with loading classes from service provider * Update http-stepped-form package to 2.1.0 * Add Session key storage, save form data depending on current session key * Add Session key storage, save form data depending on current session key * Pass session storage to the base stepped form Add default storage parameters * update documentation
1 parent 9f57fe1 commit 43b7518

18 files changed

+1924
-1145
lines changed

.github/actions/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ inputs:
66
php-version:
77
description: 'PHP version'
88
required: true
9-
default: '8.1'
9+
default: '8.2'
1010

1111
runs:
1212
using: "composite"

.github/workflows/tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
strategy:
1818
matrix:
1919
php-version:
20-
- "8.0"
2120
- "8.1"
2221
- "8.2"
22+
- "8.3"
2323

2424
steps:
2525
- name: "Checkout repository"
@@ -49,10 +49,10 @@ jobs:
4949
- name: "Checkout repository"
5050
uses: "actions/checkout@v3"
5151

52-
- name: "Setup Job with PHP version 8.1"
52+
- name: "Setup Job with PHP version 8.2"
5353
uses: "./.github/actions"
5454
with:
55-
php-version: "8.1"
55+
php-version: "8.2"
5656

5757
- name: "Static code analysis"
5858
run: |
@@ -68,10 +68,10 @@ jobs:
6868
- name: "Checkout repository"
6969
uses: "actions/checkout@v3"
7070

71-
- name: "Setup Job with PHP version 8.1"
71+
- name: "Setup Job with PHP version 8.2"
7272
uses: "./.github/actions"
7373
with:
74-
php-version: "8.1"
74+
php-version: "8.2"
7575

7676
- name: "Static code analysis"
7777
run: |

README.md

+187-9
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,201 @@
11
# Stepped Form for Laravel & Lumen
22

3+
[![PHPUnit, PHPCS, PHPStan Tests](https://github.com/lexalium/laravel-stepped-form/actions/workflows/tests.yml/badge.svg)](https://github.com/lexalium/laravel-stepped-form/actions/workflows/tests.yml)
4+
35
The package is based on the
4-
[HTTP Stepped Form](https://github.com/alexxxxkkk/http-stepped-form)
6+
[HTTP Stepped Form](https://github.com/lexalium/http-stepped-form)
57
and built for the Laravel & Lumen framework.
68

9+
<a id="readme-top" mame="readme-top"></a>
10+
11+
Table of Contents
12+
13+
1. [Requirements](#requirements)
14+
2. [Installation](#installation)
15+
3. [Configuration](#configuration)
16+
- [Publish the config](#publish-the-config)
17+
- [Available config options](#available-config-options)
18+
4. [Usage](#usage)
19+
5. [License](#license)
20+
721
## Requirements
822

9-
**PHP:** ^8.0
23+
**PHP:** >=8.1
24+
25+
**Laravel:** ^9.0 || ^10.0
26+
27+
## Installation
28+
29+
Via Composer
30+
31+
```
32+
composer require lexal/laravel-stepped-form
33+
```
34+
35+
### Additional changes for Lumen framework
36+
37+
Add the following snippet to the `bootstrap/app.php` file under the providers section as follows:
38+
39+
```php
40+
$app->register(Lexal\LaravelSteppedForm\ServiceProvider\ServiceProvider::class);
41+
```
42+
43+
<div style="text-align: right">(<a href="#readme-top">back to top</a>)</div>
44+
45+
## Configuration
46+
47+
### Publish the config
48+
49+
Run the following command to publish the package config file:
50+
51+
```shell
52+
php artisan vendor:publish --provider="Lexal\LaravelSteppedForm\ServiceProvider\ServiceProvider"
53+
```
54+
55+
### Available config options
56+
57+
The configuration file `config/stepped-form.php` has the following options:
58+
59+
1. `renderer` - contains Renderer class, instance or service alias that will translate step's template definition
60+
to the response. Must implement RendererInterface;
61+
2. `redirector` - contains Redirector class, instance or service alias that will redirect user between different
62+
steps. Must implement RedirectorInterface;
63+
3. `entity_copy` - contains Entity Copy class, instance or service alias that will clone entity of the given step.
64+
Must implement EntityCopyInterface;
65+
4. `event_dispatcher` - contains Event Dispatcher class, instance or service alias that will dispatch form events.
66+
Must implement EventDispatcherInterface;
67+
5. `exception_normalizers` - contains exception normalizers that the form will use to normalize SteppedFormException
68+
into the Response instance. Read more about them in the [HTTP Stepped Form](https://github.com/lexalium/http-stepped-form#exception-normalizers)
69+
docs;
70+
6. `forms` - contains array of all application forms definitions. Form definition must have builder class
71+
for dynamic forms or array of steps for the static forms, settings class and storage where the form will store data.
72+
73+
<div style="text-align: right">(<a href="#readme-top">back to top</a>)</div>
74+
75+
## Usage
76+
77+
1. [Publish configuration file](#publish-the-config).
78+
2. Replace with custom implementation of redirector, renderer and entity copy if necessary. Add custom exception
79+
normalizers if necessary.
80+
3. Declare your form settings.
81+
```php
82+
use Lexal\HttpSteppedForm\Settings\FormSettingsInterface;
83+
use Lexal\SteppedForm\Step\StepKey;
84+
85+
final class FormSettings implements FormSettingsInterface
86+
{
87+
public function getStepUrl(StepKey $key): string
88+
{
89+
// return step URL
90+
}
91+
92+
public function getUrlBeforeStart(): string
93+
{
94+
// returns a URL to redirect to when there is no previously renderable step
95+
}
96+
97+
public function getUrlAfterFinish(): string
98+
{
99+
// return a URL to redirect to when the form was finishing
100+
}
101+
}
102+
103+
$formSettings = new FormSettings();
104+
```
105+
106+
4. Add forms definitions.
107+
- Static form
108+
```php
109+
return [
110+
// ...
111+
112+
'forms' => [
113+
'customer' => [
114+
'steps' => [
115+
'customer' => CustomerStep::class,
116+
'broker' => BrokerStep::class,
117+
'confirmation' => ConfirmationStep::class,
118+
// other steps
119+
],
120+
'settings_class' => FormSettings::class,
121+
'storage' => SessionStorage::class,
122+
'session_storage' => SessionSessionKeyStorage::class,
123+
],
124+
],
125+
126+
// ...
127+
];
128+
```
129+
- Dynamic form
130+
```php
131+
return [
132+
// ...
133+
134+
'forms' => [
135+
'customer' => [
136+
'builder_class' => CustomBuilder::class,
137+
'settings_class' => FormSettings::class,
138+
'storage' => SessionStorage::class,
139+
'session_storage' => SessionSessionKeyStorage::class,
140+
],
141+
],
142+
143+
// ...
144+
];
145+
```
146+
147+
5. Use Stepped Form in you controller. Stepped Form will have service alias as "stepped-form." + form key form
148+
configuration.
149+
150+
**ServiceProvider.php**
151+
```php
152+
use Lexal\HttpSteppedForm\SteppedFormInterface;
153+
154+
$this->app->when(CustomerController::class)
155+
->needs(SteppedFormInterface::class)
156+
->give('stepped-form.customer');
157+
```
158+
159+
**CustomerController.php**
160+
```php
161+
use Lexal\HttpSteppedForm\SteppedFormInterface;
162+
163+
final class CustomerController
164+
{
165+
public function __construct(private readonly SteppedFormInterface $form)
166+
{
167+
}
168+
169+
// POST /customers
170+
public function start(): Response
171+
{
172+
return $this->form->start(new Customer(), /* nothing or customer id to split different sessions */);
173+
}
174+
175+
// GET /customers/step/{step-key}
176+
public function render(string $key): Response
177+
{
178+
return $this->form->render($key);
179+
}
10180

11-
**Laravel:** ^8.0 || ^9.0 || ^10.0
181+
// POST /customers/step/{step-key}
182+
public function handle(Request $request, string $key): Response
183+
{
184+
return $this->form->handle($key, $request);
185+
}
12186

13-
## Resources
187+
// POST /customers/cansel
188+
public function cancel(): Response
189+
{
190+
return $this->form->cancel(route('customer.index'));
191+
}
192+
}
193+
```
14194

15-
1. [Installation](docs/INSTALLATION.md).
16-
2. [Configuration](docs/CONFIGURATION.md).
195+
See configuration file for more information.
17196

18-
---
197+
<div style="text-align: right">(<a href="#readme-top">back to top</a>)</div>
19198

20199
## License
21200

22-
Laravel & Lumen Stepped Form is licensed under the MIT License. See
23-
[LICENSE](LICENSE) for the full license text.
201+
Laravel & Lumen Stepped Form is licensed under the MIT License. See [LICENSE](LICENSE) for the full license text.

composer.json

+18-15
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,31 @@
1111
"keywords": [
1212
"laravel",
1313
"lumen",
14-
"stepped-form"
14+
"stepped-form",
15+
"dynamic stepped-form",
16+
"multi-step form",
17+
"multi-step"
1518
],
1619
"require": {
17-
"php": "^8.0",
18-
"illuminate/contracts": "^8.0 || ^9.0 || ^10.0",
19-
"illuminate/routing": "^8.0 || ^9.0 || ^10.0",
20-
"illuminate/support": "^8.0 || ^9.0 || ^10.0",
21-
"lexal/http-stepped-form": "^1.0"
20+
"php": ">=8.1",
21+
"illuminate/contracts": "^9.0 || ^10.0",
22+
"illuminate/routing": "^9.0 || ^10.0",
23+
"illuminate/support": "^9.0 || ^10.0",
24+
"lexal/http-stepped-form": "^2.1"
2225
},
2326
"require-dev": {
24-
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
25-
"illuminate/http": "^8.0 || ^9.0 || ^10.0",
26-
"phpstan/phpstan": "^1.2",
27-
"phpunit/phpunit": "^9.5",
27+
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
28+
"illuminate/http": "^9.0 || ^10.0",
29+
"phpstan/phpstan": "^1.10",
30+
"phpunit/phpunit": "^10.5",
2831
"roave/security-advisories": "dev-latest",
29-
"webimpress/coding-standard": "^1.2"
32+
"webimpress/coding-standard": "^1.3"
3033
},
3134
"suggest": {
32-
"illuminate/events": "Required to use Laravel Dispatcher as form Event Dispatcher (^8.0 || ^9.0 || ^10.0).",
33-
"illuminate/view": "Required to render Laravel views (^8.0 || ^9.0 || ^10.0).",
34-
"illuminate/session": "Required to use Laravel Session as Stepped Form storage (^8.0 || ^9.0 || ^10.0).",
35-
"illuminate/config": "Required to use Laravel config (^8.0 || ^9.0 || ^10.0)."
35+
"illuminate/events": "Required to use Laravel Dispatcher as form Event Dispatcher (^9.0 || ^10.0).",
36+
"illuminate/view": "Required to render Laravel views (^9.0 || ^10.0).",
37+
"illuminate/session": "Required to use Laravel Session as Stepped Form storage (^9.0 || ^10.0).",
38+
"illuminate/config": "Required to use Laravel config (^9.0 || ^10.0)."
3639
},
3740
"autoload": {
3841
"psr-4": {

0 commit comments

Comments
 (0)