-
Notifications
You must be signed in to change notification settings - Fork 38
small changes #45
base: master
Are you sure you want to change the base?
small changes #45
Changes from all commits
558cea5
a7c7ced
c1cca64
ecf8fc9
b2b4bd8
b3a2d53
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
phpunit.xml | ||
coverage | ||
vendor/symfony | ||
vendor/twig | ||
vendor/twitteroauth | ||
vendor/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,11 +9,12 @@ | |
|
||
<xsd:complexType name="config"> | ||
<xsd:attribute name="alias" type="xsd:string" /> | ||
<xsd:attribute name="file" type="xsd:string" /> | ||
<xsd:attribute name="callback_url" type="xsd:string" /> | ||
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. what is the point of keeping it in the Configuration class to avoid breaking things for old configs if you break them before that when validating the schema for people using XML ? 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. you're right, I've added a note instead. 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. but it could also have been a way to make people see the deprecation... usually IDEs show some warning on that situation. 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. the goal of deprecating instead of removing is to provide BC. An XML validation error is not BC (and hard to understand for many people, especially when the same stuff was workign previously) |
||
<xsd:attribute name="anywhere_version" type="xsd:string" /> | ||
<xsd:attribute name="consumer_key" type="xsd:string" /> | ||
<xsd:attribute name="consumer_secret" type="xsd:string" /> | ||
<!-- FOR BC, TO BE REMOVED --> | ||
<xsd:attribute name="file" type="xsd:string" /> | ||
</xsd:complexType> | ||
|
||
</xsd:schema> |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,12 +13,18 @@ | |
], | ||
"require": { | ||
"php": ">=5.3.2", | ||
"symfony/framework-bundle": "2.*", | ||
"symfony/security-bundle": ">=2.1,<2.3-dev", | ||
"symfony/framework-bundle": "~2.1", | ||
"symfony/security-bundle": "~2.1", | ||
"kertz/twitteroauth": "*" | ||
}, | ||
"minimum-stability": "dev", | ||
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. because "kertz/twitteroauth" has no stable version cc @Kertz |
||
"autoload": { | ||
"psr-0": { "FOS\\TwitterBundle": "" } | ||
}, | ||
"target-dir": "FOS/TwitterBundle" | ||
"target-dir": "FOS/TwitterBundle", | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "1.1.x-dev" | ||
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. wrong. Should be 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. @stof : Are you sure? I can only see a 1.0 branch with one release on it, so I assumed the current master is 1.1.x-dev. 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. sorry, I got confused by looking at too many PRs in different bundles in a short time and looked at the wrong package on Packagist |
||
} | ||
} | ||
} |
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.
This is bumping the requirement to Symfony 2.1 so please update the composer.json file
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.
what a catch! fixed