Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/on-pr-merged.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: After-Merge Chores
on:
pull_request:
branches:
- FRAMEWORK_6_0
types:
- closed
# branches:
# - FRAMEWORK_6_0
workflow_dispatch:

jobs:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/on-pr.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: Pull Request Chores
on:
pull_request:
branches:
- FRAMEWORK_6_0
types:
- opened
- edited
- reopened
workflow_dispatch:

jobs:
Expand Down
1 change: 1 addition & 0 deletions .horde.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ dependencies:
phpstan/phpstan: ^2
nocommands:
- bin/demo-client.php
- bin/demo-client-get-prs.php
34 changes: 22 additions & 12 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,37 @@
{
"name": "horde/githubapiclient",
"description": "Interact with the Github API from PHP code",
"type": "library",
"license": "LGPL-2.1",
"autoload": {
"psr-4": {
"Horde\\GithubApiClient\\": "src/"
}
},
"homepage": "https://www.horde.org",
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Ralf Lang",
"email": "ralf.lang@ralf-lang.de"
"email": "ralf.lang@ralf-lang.de",
"role": "contributor"
}
],
"minimum-stability": "dev",
"time": "2025-04-28",
"repositories": [],
"require": {
"horde/http": "dev-FRAMEWORK_6_0"
"php": "^8.3",
"horde/http": "*"
},
"require-dev": {
"horde/injector": "dev-FRAMEWORK_6_0",
"rector/rector": "^2",
"phpunit/phpunit": "^12",
"friendsofphp/php-cs-fixer": "^3",
"phpstan/phpstan": "^2"
},
"suggest": {},
"autoload": {
"psr-4": {
"Horde\\GithubApiClient\\": "src/"
}
},
"autoload-dev": {},
"config": {
"allow-plugins": {
"horde/horde-installer-plugin": true
}
}
}
}
Loading