-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PHP 7.2 and Symfony ^4.0 #52
PHP 7.2 and Symfony ^4.0 #52
Conversation
php7.2 runs against highest dependencies, php7.1 against lowest
Some things need to be adjusted to get it working for symfony 4. - DataCollectorInterface has a reset-Method. - Services are private by default. This has to be adjusted mostly in tests. - ResolveDefinitionTemplatesPass is not available in v4.0, but ResolveChildDefinitionsPass is not available in 3.3 (tests only).
It is explicitly added to phpunit later and would slow down phpcs.
@UFOMelkor I suggest we test PHP 7.2 with highest AND lowest dependencies and PHP 7.1 also with highest AND lowest dependencies. This will make 4 travis builds and will take a little longer, but we are more safe like this. |
Changed it to:
|
class: ProophTest\Bundle\ServiceBus\DependencyInjection\Fixture\Model\AcmeUserEventListener | ||
public: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing newline
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, I added one 👍
Any thoughts when this will be merged? |
ping @prooph/symfony-team |
great job |
On travis:
Some things need to be adjusted to get it working for symfony 4.
Closes #48
Closes #50