Skip to content

Restore PHP 8.3 compatibility and remove build-time external font dependency#10

Draft
pboese with Copilot wants to merge 2 commits into
mainfrom
copilot/check-if-everything-works
Draft

Restore PHP 8.3 compatibility and remove build-time external font dependency#10
pboese with Copilot wants to merge 2 commits into
mainfrom
copilot/check-if-everything-works

Conversation

Copilot AI commented Jul 14, 2026

Copy link
Copy Markdown
Contributor

This change addresses two environment-level breakages in the app: Composer could not resolve dependencies on PHP 8.3, and Vite production builds depended on fetching Bunny-hosted fonts at build time. The result is a repository that resolves dependencies and builds without those external constraints.

  • Dependency compatibility

    • Removed the unused pushery/wirekit package, which was the only dependency forcing PHP 8.4.
    • Lowered the root PHP constraint from ^8.4 to ^8.3 to match the actual supported framework/runtime set.
  • Blade/layout cleanup

    • Removed @wirekitStyles / @wirekitScripts from the app and guest layouts.
    • Removed the Wirekit CSS import from resources/css/app.css.
  • Build determinism

    • Removed Bunny font integration from vite.config.js.
    • Removed external Bunny font links from Blade layouts so the app uses the existing local/system font stack instead of a network fetch during build.
  • Docs alignment

    • Updated the README to reflect the actual PHP requirement and removed Wirekit from the documented stack.
// vite.config.js
laravel({
    input: ['resources/css/app.css', 'resources/js/app.js'],
    refresh: true,
})

Copilot AI linked an issue Jul 14, 2026 that may be closed by this pull request
Copilot AI changed the title [WIP] Check if everything works Restore PHP 8.3 compatibility and remove build-time external font dependency Jul 14, 2026
Copilot AI requested a review from pboese July 14, 2026 01:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Check if everYthing works

2 participants