PHPackages                             appio-digital/redmine-passage-nette - 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. [Framework](/categories/framework)
4. /
5. appio-digital/redmine-passage-nette

AbandonedArchivedLibrary[Framework](/categories/framework)

appio-digital/redmine-passage-nette
===================================

Integration Redmine Passage for Nette Framework

v1.2.0(7y ago)0966MITPHPPHP ~7.1

Since Jun 15Pushed 7y ago3 watchersCompare

[ Source](https://github.com/AppioDigital/RedminePassageNette)[ Packagist](https://packagist.org/packages/appio-digital/redmine-passage-nette)[ RSS](/packages/appio-digital-redmine-passage-nette/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (12)Versions (7)Used By (0)

Quickstart
==========

[](#quickstart)

[![Build Status](https://camo.githubusercontent.com/84c5a1b77c1d15c9239b4ad7b13f0fbead448b8082347c5f907e0f453c3dd849/68747470733a2f2f7472617669732d63692e6f72672f417070696f4469676974616c2f5265646d696e65506173736167654e657474652e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/AppioDigital/RedminePassageNette)[![Coverage Status](https://camo.githubusercontent.com/64822637dddf2391a1f676106596ccf0d7fb88c84dd53ce0fdaf8f1ab54a2639/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f417070696f4469676974616c2f5265646d696e65506173736167654e657474652f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/AppioDigital/RedminePassageNette?branch=master)

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

[](#installation)

The best way to install AppioDigital/RedminePassageNette is using [Composer](http://getcomposer.org/):

```
$ composer require appio-digital/redmine-passage-nette
```

Required classes
----------------

[](#required-classes)

This extension need find two implementation of interfaces:

- `Appio\RedmineNette\Security\RedmineResourceProviderInterface`: for get api key resource
- `Appio\RedmineNette\Security\RedmineResourceKeyInterface`: for get api key

Example class LoggedUserProvider implementing `Appio\RedmineNette\Security\RedmineResourceProviderInterface`

```
class LoggedUserProvider implements RedmineResourceProviderInterface
{
    /** @var UserRepo */
    private $userRepository;

    /** @var User */
    private $netteUser;

    /**
     * @param UserRepo $userRepository
     * @param User $netteUser
     */
    public function __construct(UserRepo $userRepository, User $netteUser)
    {
        $this->userRepository = $userRepository;
        $this->netteUser = $netteUser;
    }

    /**
     * @return RedmineResourceKeyInterface|null
     */
    public function getResource(): ?RedmineResourceKeyInterface
    {
        return $this->userRepository->find($this->netteUser->getId());
    }
}
```

Example class User implementing `Appio\RedmineNette\Security\RedmineResourceKeyInterface`

```
class User implements RedmineResourceKeyInterface
{
    /**
     * @var string
     * @ORM\Column(type="string", nullable=true, unique=true)
     */
    private $redmineApiKey;

    /**
     * @return string
     */
    public function getRedmineApiKey(): string
    {
        return $this->redmineApiKey ?? '';
    }
}
```

Configuration
-------------

[](#configuration)

### Minimal configuration

[](#minimal-configuration)

```
extensions:
    httplug: FreezyBee\Httplug\DI\HttplugExtension
    redmine: Appio\RedmineNette\DI\RedmineExtension

redmine:
    baseUri: 'https://your.redmine.com/api'
```

### Full configuration

[](#full-configuration)

```
redmine:
    baseUri: 'https://your.redmine.com/api'
    defaultProjectId: 10
    defaults:

        # default setting - merged to all another
        default:
            assignedToId: 50 # Project manager
            trackerId: 2 # Feature
            statusId: 1 # New
            params:
                some_filter_param: 1
            customFields:
                # some hidden custom field
                3:
                    type: hidden
                    defaultValue: 1

        # defaults for project with id 1
        1:
            assignedToId: 1 # Super project manager
            customFields:
                # text
                4:
                    type: text
                    label: Custom
                    defaultValue: hello
                    disabledAction: add # input disabled - choices "add,edit,all" default false
                # checkbox
                15:
                    type: checkbox
                    label: Custom
                    defaultValue: hello
```

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 90% 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 ~75 days

Recently: every ~84 days

Total

6

Last Release

2877d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/76a91b33efe3b1c54adc4b3a21f5623efdd58542fff5411a7cda40213afee2ac?d=identicon)[pavelvondrasek](/maintainers/pavelvondrasek)

---

Top Contributors

[![janatjak](https://avatars.githubusercontent.com/u/11320085?v=4)](https://github.com/janatjak "janatjak (9 commits)")[![pavelvondrasek](https://avatars.githubusercontent.com/u/7081340?v=4)](https://github.com/pavelvondrasek "pavelvondrasek (1 commits)")

---

Tags

netteredmineappio

###  Code Quality

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/appio-digital-redmine-passage-nette/health.svg)

```
[![Health](https://phpackages.com/badges/appio-digital-redmine-passage-nette/health.svg)](https://phpackages.com/packages/appio-digital-redmine-passage-nette)
```

###  Alternatives

[nette/web-project

Nette: Standard Web Project

10991.8k](/packages/nette-web-project)[kdyby/autowired

Syntax sugar for working with services in Nette Framework

30885.7k9](/packages/kdyby-autowired)[nasext/dependent-select-box

Dependent Select Box for Nette Framework.

21262.8k2](/packages/nasext-dependent-select-box)

PHPackages © 2026

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