PHPackages                             teltek/oauth2-oracle-access-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. teltek/oauth2-oracle-access-manager

ActiveLibrary

teltek/oauth2-oracle-access-manager
===================================

Oracle access manager OAuth 2.0 Client Provider for The PHP League OAuth2-Client

1.0.3(5y ago)155proprietaryPHPPHP &gt;=5.5.9CI failing

Since Mar 2Pushed 5y ago9 watchersCompare

[ Source](https://github.com/teltek/oauth2-oracle-access-manager)[ Packagist](https://packagist.org/packages/teltek/oauth2-oracle-access-manager)[ Docs](https://github.com/teltek/oauth2-oracle-access-manager)[ RSS](/packages/teltek-oauth2-oracle-access-manager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

Deprecated
==========

[](#deprecated)

This bundle is deprecated and only works for PuMuKIT v2.7 or lower.

To use PuMuKIT v3 or greater install the new bundle: [PumukitOAuth2Bundle](https://github.com/pumukit/PumukitOAuth2Bundle)

Oracle Access Manager Provider for OAuth 2.0 Client
===================================================

[](#oracle-access-manager-provider-for-oauth-20-client)

This package provides Oracle Access Manager OAuth 2.0 support for the PHP League's [OAuth 2.0 Client](https://github.com/thephpleague/oauth2-client).

Installation
------------

[](#installation)

To install, use composer:

```
composer require teltek/oauth2-oracle-access-manager

```

Usage
-----

[](#usage)

Usage is the same as The League's OAuth client, using `Teltek\Oauth2OracleAccessManagerBundle\Provider\Oam` as the provider.

### Authorization Code Flow

[](#authorization-code-flow)

```
$provider = new Teltek\Oauth2OracleAccessManagerBundle\Provider\Oam(
    'clientId' => 'your client id',
    'clientSecret' => 'your client secret',
    'redirectUri' => 'your redirect uri',
    'urlAuthorize' => 'your url authorize',
    'urlAccessToken' => 'your url access token',
    'urlResourceOwnerDetails' => 'your url resource owner details',
]);

if (!isset($_GET['code'])) {
    $options['scope'] = array('Customer.Info','UserProfile.me');
    $authorizationUrl = $provider->getAuthorizationUrl($options);

    $_SESSION['oauth2state'] = $provider->getState();

    header('Location: '.$authorizationUrl);
    exit;

} elseif (empty($_GET['state']) || ($_GET['state'] !== $_SESSION['oauth2state'])) {
    unset($_SESSION['oauth2state']);
    exit('Invalid state');
} else {

    try {
        $accessToken = $provider->getAccessToken('authorization_code',['code' => $_GET['code']]);

        $resourceOwner = $provider->getResourceOwner($accessToken);

        ...
    }  catch (IdentityProviderException $e) {
        exit($e->getMessage());
    }
```

### Scopes

[](#scopes)

If you want send different scopes you must edit:

```
$options['scope'] = array('Customer.Info','UserProfile.me');
```

###  Health Score

28

—

LowBetter than 54% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 91.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~477 days

Total

4

Last Release

1924d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/195745?v=4)[Ruben Gonzalez](/maintainers/rubenrua)[@rubenrua](https://github.com/rubenrua)

![](https://avatars.githubusercontent.com/u/1632294?v=4)[Pablo Nieto](/maintainers/pnieto)[@pnieto](https://github.com/pnieto)

![](https://avatars.githubusercontent.com/u/11873240?v=4)[Pablo Ogando Ferreira](/maintainers/Yurujai)[@Yurujai](https://github.com/Yurujai)

---

Top Contributors

[![Yurujai](https://avatars.githubusercontent.com/u/11873240?v=4)](https://github.com/Yurujai "Yurujai (11 commits)")[![pnieto](https://avatars.githubusercontent.com/u/1632294?v=4)](https://github.com/pnieto "pnieto (1 commits)")

---

Tags

clientoracleSymfony2oauth2teltekoracle access manager

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/teltek-oauth2-oracle-access-manager/health.svg)

```
[![Health](https://phpackages.com/badges/teltek-oauth2-oracle-access-manager/health.svg)](https://phpackages.com/packages/teltek-oauth2-oracle-access-manager)
```

###  Alternatives

[league/oauth2-google

Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client

41721.2M118](/packages/league-oauth2-google)[thenetworg/oauth2-azure

Azure Active Directory OAuth 2.0 Client Provider for The PHP League OAuth2-Client

2509.6M48](/packages/thenetworg-oauth2-azure)[stevenmaguire/oauth2-keycloak

Keycloak OAuth 2.0 Client Provider for The PHP League OAuth2-Client

2275.9M27](/packages/stevenmaguire-oauth2-keycloak)[patrickbussmann/oauth2-apple

Sign in with Apple OAuth 2.0 Client Provider for The PHP League OAuth2-Client

1132.5M6](/packages/patrickbussmann-oauth2-apple)[mollie/oauth2-mollie-php

Mollie Provider for OAuth 2.0 Client

251.7M1](/packages/mollie-oauth2-mollie-php)[omines/oauth2-gitlab

GitLab OAuth 2.0 Client Provider for The PHP League OAuth2-Client

36721.5k13](/packages/omines-oauth2-gitlab)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
