stingus / jira-bundle
Symfony bundle for applications used as Jira consumers, providing Oauth 1.0a integration
Installs: 3 035
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 1
Forks: 1
Open Issues: 1
Type:symfony-bundle
Requires
- php: ^7.0
- ext-json: *
- ext-openssl: *
- guzzlehttp/guzzle: ^6.2
- guzzlehttp/oauth-subscriber: ^0
- symfony/framework-bundle: ^3.4
Requires (Dev)
- codeclimate/php-test-reporter: ^0
- doctrine/doctrine-bundle: ^1.9
- doctrine/orm: ^2.5
- escapestudios/symfony2-coding-standard: ^3.9
- phpunit/phpunit: ^6.2
- symfony/translation: ^3.4
- symfony/yaml: ^3.4
README
StingusJiraBundle
This bundle connects your Symfony application to one or more Atlassian JIRA instances, allowing you to make API requests to those instances.
When you should use this bundle
If you need to use the JIRA REST APIs for one or more JIRA instances, the bundle exposes all the methods needed to make API requests, using the OAuth 1.0a protocol.
When you should not use this bundle
This bundle is not using JIRA as an authentication provider for your application users. There are other solutions doing just that, like HWIOAuthBundle.
Features
- SSL certificate generation
- Get the OAuth tokens for each JIRA instance used in your application
- OAuth authorization controller, dealing with the OAuth "dance" between your application (as a consumer) and the JIRA instance (as describe in the official JIRA docs)
- JIRA API client, which can be used for all API requests sent to the JIRA instance
- OAuth token storage (only Doctrine ORM for now). You can, however, manage the tokens by catching the Stingus/Jira/Event/OauthTokenGeneratedEvent
Prerequisites
- PHP >= 7.0 (openssl extension required)
- Symfony >= 3.4
Documentation
See the bundle documentation for installation and usage.