17 Commits

Author SHA1 Message Date
renovate[bot]
4ac6554848 chore(deps): update actions/dependency-review-action action (v4.8.2 → v4.8.3) (#44)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-02-22 04:30:49 +00:00
renovate[bot]
4e74236eff chore(deps): lock file maintenance (#41) 2026-02-17 19:10:54 +02:00
renovate[bot]
328d89215a chore(deps): update actions/checkout action (v6.0.1 → v6.0.2) (#39)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2026-01-24 05:55:38 +00:00
c51399580e feat: upgrade laravel-zero, illuminate & pest (#38) 2025-12-22 14:10:19 +02:00
9dd3b08b84 chore(deps): bump php to 8.4, update packages, rebuild (#37) 2025-12-22 08:28:11 +02:00
266068326b chore: update workflows 2025-12-04 00:30:43 +02:00
d050ac3b52 chore(deps): upgrade packages
# Conflicts:
#	composer.lock
2025-12-04 00:29:25 +02:00
renovate[bot]
af506b4488 chore(deps)!: update actions/checkout (v5 → v6) (#34) 2025-12-03 20:18:46 +02:00
dependabot[bot]
beb28d8fdb build(deps): bump symfony/http-foundation from 7.2.3 to 7.3.7 (#33) 2025-11-13 01:08:25 +02:00
renovate[bot]
6fbd953b30 feat(github-action)!: Update actions/checkout (v4 → v5) (#29) 2025-08-16 16:09:00 +03:00
renovate[bot]
2fa5b469a1 feat(github-action)!: Update actions/download-artifact (v4 → v5) (#28)
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-08-07 05:32:20 +03:00
Ismo Vuorinen
3ead4ff211 chore(deps): update composer packages 2025-03-19 10:51:04 +02:00
renovate[bot]
ed09f3e03d chore(deps): pin dependencies (#25) 2025-02-09 20:45:28 +02:00
dependabot[bot]
c31beafead build(deps): bump nesbot/carbon from 3.8.1 to 3.8.4 (#24)
Bumps [nesbot/carbon](https://github.com/CarbonPHP/carbon) from 3.8.1 to 3.8.4.
- [Release notes](https://github.com/CarbonPHP/carbon/releases)
- [Commits](https://github.com/CarbonPHP/carbon/compare/3.8.1...3.8.4)

---
updated-dependencies:
- dependency-name: nesbot/carbon
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-09 01:14:38 +02:00
Ismo Vuorinen
1103e59c35 chore(deps): update deps, remove temp phar (#23) 2024-11-07 09:25:12 +02:00
renovate[bot]
de9231d1cd chore(deps): update pestphp/pest to 3.0.1 (#20)
* chore(deps): update pestphp/pest to 3.0.1

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>

* chore(deps): fix dependencies for pest 3.x

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ismo Vuorinen <ismo@ivuorinen.net>
2024-09-10 10:07:35 +03:00
Ismo Vuorinen
29d11f41c7 chore(meta): update renovate.json 2024-07-23 03:50:33 +03:00
7 changed files with 2634 additions and 1829 deletions

View File

@@ -1,4 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>ivuorinen/.github:renovate-config"]
"extends": [
"github>ivuorinen/renovate-config"
]
}

View File

@@ -18,6 +18,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: "Dependency Review"
uses: actions/dependency-review-action@v4
uses: actions/dependency-review-action@05fe4576374b728f0c523d6a13d64c25081e0803 # v4.8.3

View File

@@ -14,15 +14,15 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ["8.2"]
php: ["8.4"]
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Setup PHP
uses: shivammathur/setup-php@v2
uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # 2.36.0
with:
php-version: ${{ matrix.php }}
ini-values: phar.readonly=0
@@ -36,7 +36,7 @@ jobs:
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install Composer dependencies
uses: ramsey/composer-install@v2
uses: ramsey/composer-install@3cf229dc2919194e9e36783941438d17239e8520 # 3.1.1
- name: PHPUnit Testing
run: vendor/bin/pest --coverage
@@ -51,7 +51,7 @@ jobs:
- name: Ensure the PHAR works
run: builds/branch-usage-checker --version
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
name: Upload the PHAR artifact
with:
name: branch-usage-checker
@@ -64,13 +64,13 @@ jobs:
- "build-phar"
if: github.event_name == 'release'
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
with:
name: branch-usage-checker
path: builds/
- name: Upload box.phar
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: builds/branch-usage-checker

1
.php-version Normal file
View File

@@ -0,0 +1 @@
8.4

Binary file not shown.

View File

@@ -22,18 +22,18 @@
"source": "https://github.com/ivuorinen/branch-usage-checker"
},
"require": {
"php": "^8.2",
"php": "^8.4",
"guzzlehttp/guzzle": "^7",
"illuminate/http": "^11",
"illuminate/http": "^12.17",
"laravel-zero/phar-updater": "^1.2",
"nunomaduro/termwind": "^2",
"spatie/data-transfer-object": "^3.7"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"laravel-zero/framework": "^11",
"laravel-zero/framework": "^12",
"mockery/mockery": "^1",
"pestphp/pest": "^2",
"pestphp/pest": "^4",
"roave/security-advisories": "dev-latest"
},
"minimum-stability": "dev",
@@ -60,9 +60,6 @@
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"platform": {
"php": "8.2"
},
"preferred-install": "dist",
"sort-packages": true
},
@@ -72,7 +69,8 @@
],
"build": [
"cp application application.phar",
"@php application app:build branch-usage-checker"
"@php application app:build branch-usage-checker",
"rm -f application.phar || true"
],
"test": "vendor/bin/pest",
"x": "@php builds/branch-usage-checker"

4426
composer.lock generated

File diff suppressed because it is too large Load Diff