Compare commits

...

2 commits
v0.0.2 ... dev

Author SHA1 Message Date
90f55d0e58 Merge pull request 'DX audit and fix (PHP)' (#8) from agent/dx-audit-and-fix--laravel-php-package into dev
Reviewed-on: #8
2026-03-24 11:35:23 +00:00
Snider
2659490924 fix(uptelligence): DX audit — fix strict_types and CLAUDE.md commands
Some checks failed
CI / PHP 8.3 (pull_request) Failing after 3s
CI / PHP 8.4 (pull_request) Failing after 3s
- Add missing declare(strict_types=1) to config.php and routes/admin.php
- Fix artisan command prefixes in CLAUDE.md: three commands use
  uptelligence: prefix not upstream: (check-updates, send-digests,
  sync-altum-versions)
- PSR-12 compliance verified (no tabs, no trailing whitespace)
- composer test blocked: ../php path repo not available in workspace

Co-Authored-By: Virgil <virgil@lethean.io>
2026-03-17 09:11:03 +00:00
3 changed files with 11 additions and 7 deletions

View file

@ -20,13 +20,13 @@ composer run test # Run all tests with Pest
**Artisan commands** (when installed in a host application):
```bash
php artisan upstream:check # Display vendor status table
php artisan upstream:analyze # Run AI diff analysis between versions
php artisan upstream:issues # Create GitHub/Gitea issues from todos
php artisan upstream:check-updates # Poll registries (GitHub, Gitea, AltumCode)
php artisan upstream:send-digests # Send scheduled digest emails
php artisan upstream:sync-forge # Sync with internal Gitea instance
php artisan upstream:sync-altum-versions # Read deployed Altum versions from disk
php artisan upstream:check # Display vendor status table
php artisan upstream:analyze # Run AI diff analysis between versions
php artisan upstream:issues # Create GitHub/Gitea issues from todos
php artisan upstream:sync-forge # Sync with internal Gitea instance
php artisan uptelligence:check-updates # Poll registries (GitHub, Gitea, AltumCode)
php artisan uptelligence:send-digests # Send scheduled digest emails
php artisan uptelligence:sync-altum-versions # Read deployed Altum versions from disk
```
## Architecture

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
return [
/*
|--------------------------------------------------------------------------

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
use Core\Mod\Uptelligence\View\Modal\Admin\AssetManager;
use Core\Mod\Uptelligence\View\Modal\Admin\Dashboard;
use Core\Mod\Uptelligence\View\Modal\Admin\DiffViewer;