Atsuhiro Kubo

Results 173 comments of Atsuhiro Kubo

This issue could not be reproduced in PHP 7.4.7 on Windows 10 as the following: ```shell $ php ~/bin/composer.phar require phpmentors/workflower-bundle "1.4.*" ./composer.json has been updated Loading composer repositories with...

Two questions: 1. Do you use an existing composer.json? 2. What is the package that requires symfony/cache v5.1.3?

In my enviroment, symfony/cache is required by symfony/expression-language directly as follows: ``` $ php ~/bin/composer.phar depends --tree symfony/cache symfony/cache v4.3.11 Symfony Cache component with PSR-6, PSR-16, and tags └──symfony/expression-language v4.4.11...

Hmm, I'll check the quick start guide.

@rockancun Great work:exclamation: Thank you :smile:

> @iteman What do you think about renaming the Workflow class to ProcessInstance? Seems good. I will rename it, and remove `WorkflowBuilder`.

Serialized objects have often been broken at PHP level. This would be a time to remove all uses of `\Serializable` in `Workflow` objects including `StateMachine` objects. If so, our `SerializableInterface`...

Yes. I think Workflower can be used with Laravel since it only uses Symfony components, not Symfony framework. But you may want well-integrated features such like WorkflowerBundle for Symfony.

If you directly use Workflower and PHPMentorsWorkflowerBundle, a code for starting processes of a workflow would be as the following: ```php // ... class LoanRequestProcessStartUsecase implements CommandUsecaseInterface, ProcessAwareInterface { //...

If you are using Workflower with Laravel, I think https://github.com/rockancun/laravel_workflower is a good start point. Also, for integration with any application framework, see our Symfony bundle https://github.com/phpmentors-jp/workflower-bundle.