Conversation
There was a problem hiding this comment.
wrong. Should be 1.2.x-dev as latest release is alreayd 1.2.2
There was a problem hiding this comment.
@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.
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.
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.
you're right, I've added a note instead.
There was a problem hiding this comment.
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.
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)
There was a problem hiding this comment.
This is bumping the requirement to Symfony 2.1 so please update the composer.json file
|
Can you also modify the .travis.yml file to test with current Symfony instead of 2.0 ? |
There was a problem hiding this comment.
because "kertz/twitteroauth" has no stable version cc @Kertz
|
Any news regarding this? Would be nice to have the package work out of the box... |
|
my opinion is to officially deprecate this bundle as most of its code is about features dropped by Twitter anyway. The only remaining feature in the bundle is the OAuth 1 integration, and HWIOAuthBundle is a better choice for it IMO. |
|
I agree with @stof, it doesn't make much sense to maintain this bundle anymore when HWIOAuthBundle pretty much does the same thing. That said, right now I do not have the time to maintain the repo |
|
Well, In my case, I just need access to the Twitter API (Not really the sign-in with twitter, yet)... As far as I can see, HWIOAuthBundle doesn't provide access to the Twitter API (nor is it even remotely close to its goal). Do you think it would be a good idea to simply provide a new version of this Bundle which would be a wrapper around tmhOAuth so we can have an easy to use bundle providing access to the Twitter API (Just like FOSFacebook does with the Facebook PHP SDK ?) |
|
@Kertz I don't think it makes sense to transfer it to FOS. We already don't have enough time to maintain the current set of repos. and once this bundle get deprecated officially in favor of HWIOAuthBundle, the FOS bundles will not depend on the library anymore. Thus, AFAIK, none of the FOS devs is using the FOSTwitterBundle currently (which is also one of the reason why it looks abandoned already) @lemoinem If you want to access the API on your own behalf, FOSTwitterBundle is not close either. If you want to access the API on behalf of your user, you need 2 different things: first authenticating through OAuth (which is what HWIOAuthBundle and FOSTwitterBundle are doing) and then using the retrieved access token in an API client. I don't think it makes sense to create a bundle doing only |
|
Thanks @stof for the precision. After a couple of tests, FOSTwitter is most definitely not what I need... |
No description provided.