Closed kbond closed 11 years ago
Why not? Do you use the bundle in production and what about the failing build on travis for PHP5.4?
Yes, I use this in a couple production apps. That fail was an issue with gihub/packagist.
See the latest here: https://travis-ci.org/dreipunktnull/DpnXmlSitemapBundle
Ok then...what now? :)
do you mean how do you create a v1.0.0 release?
Uhm...yes :\
are you using git cli or some sort of gui?
cli
# on latest master
git tag v1.0.0
git push --tags
This will create a new release on packagist
Ok, thanks for helping a noob :+1: . Reading over composer.json I am not sure if the dependencies are a little too "greedy".
yeah mean with using the *
's?
Those and I don't think full symfony/framework-bundle
is required. I'll have a look later.
I haven't tested in a symfony 2.0 project but I think it does work
I usually require the symfony/framework-bundle
when creating a bundle, but that's just me. The only actual dependency I see is here: https://github.com/dreipunktnull/DpnXmlSitemapBundle/blob/master/Controller/Controller.php#L17 but this can be changed to use Symfony/Component/Routing/Router
(i think)
There are some more like RedirectResponse
, Configuration
and soon Command
. I'll go through the code and see what can be done.
Certainly, once you add the Command, it will need to require the framework-bundle
FYI - RedirectResponse
is from symfony/http-foundation
and Configuration
is from symfony/config
What do you think? Ready for v1.0.0 release?