You can obtain free community support for example through stackoverflow, or also through the Symfony2 mailing list.
If you think you found a bug, please create a ticket in the bug tracker.
If you take code quality seriously, try out the new continuous inspection service.
scrutinizer-ci.com
To install JMSPaymentCoreBundle with Composer just add the following to your composer.json file:
// composer.json
{
// ...
require: {
// ...
"jms/payment-core-bundle": "master-dev"
}
}
Then, you can install the new dependencies by running Composer’s update command from the directory where your composer.json file is located:
$ php composer.phar update
Now, Composer will automatically download all required files, and install them for you. All that is left to do is to update your AppKernel.php file, and register the new bundle:
<?php
// in AppKernel::registerBundles()
$bundles = array(
// ...
new JMS\Payment\CoreBundle\JMSPaymentCoreBundle(),
// ...
);
First, checkout a copy of the code. Just add the following to the deps file of your Symfony Standard Distribution:
[JMSPaymentCoreBundle]
git=git://github.com/schmittjoh/JMSPaymentCoreBundle.git
target=bundles/JMS/Payment/CoreBundle
Then register the bundle with your kernel:
<?php
// in AppKernel::registerBundles()
$bundles = array(
// ...
new JMS\PaymentCoreBundle\JMSPaymentCoreBundle(),
// ...
);
Make sure that you also register the namespace with the autoloader:
<?php
// app/autoload.php
$loader->registerNamespaces(array(
// ...
'JMS' => __DIR__.'/../vendor/bundles',
// ...
));
Now use the vendors script to clone the newly added repositories into your project:
$ php bin/vendors install