-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[Twig] Decouple Twig commands from the Famework #9855
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
Changes from 1 commit
8861f9c
b8bd4aa
1124bb6
d500749
678eddf
a8fd92e
b008f49
3696d04
c244b14
3d0f93c
08759f0
eb831e7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
…d twig:lint
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
CHANGELOG | ||
========= | ||
|
||
2.5.0 | ||
----- | ||
|
||
* added command `twig:lint` from `TwigBundle` | ||
|
||
2.4.0 | ||
----- | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
CHANGELOG | ||
========= | ||
|
||
2.5.0 | ||
----- | ||
|
||
* moved `LintCommand` to the Twig bridge and register it as a service | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. and registered it as a service There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed. |
||
|
||
2.3.0 | ||
----- | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ | |
], | ||
"require": { | ||
"php": ">=5.3.3", | ||
"symfony/twig-bridge": "~2.2", | ||
"symfony/twig-bridge": "~2.5", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. isn't this a BC break, as we can't use the bundle with symfony 2.2 anymore? (which could before this PR) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is not a BC break IMO. If you have the fullstack 2.2, you cannot use TwigBundle 2.5 anyway (as TwigBundle is part of the fullstack). |
||
"symfony/http-kernel": "~2.1" | ||
}, | ||
"require-dev": { | ||
|
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.
I would say
moved
instead ofadded
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.
Changed