I don’t even know where to begin. I’ve been diving into Sage10 lately and so far everything has been wonderful. A couple hours ago out of nowhere I start seeing this:
I don’t know where to turn. I was just building a theme and then this happened. I don’t understand what any of this means.
I did completely remove my vendors folder, cleared composer cache and updated composer.
Here’s my composer file. It’s been the same for a few weeks. I haven’t made any changes to it.
{
"name": "roots/sage",
"type": "wordpress-theme",
"license": "MIT",
"description": "WordPress starter theme with a modern development workflow",
"homepage": "https://roots.io/sage/",
"authors": [
{
"name": "Ben Word",
"email": "ben@benword.com",
"homepage": "https://github.com/retlehs"
},
{
"name": "Scott Walkinshaw",
"email": "scott.walkinshaw@gmail.com",
"homepage": "https://github.com/swalkinshaw"
},
{
"name": "QWp6t",
"email": "hi@qwp6t.me",
"homepage": "https://github.com/qwp6t"
},
{
"name": "Brandon Nifong",
"email": "brandon@tendency.me",
"homepage": "https://github.com/log1x"
}
],
"keywords": [
"wordpress"
],
"support": {
"issues": "https://github.com/roots/sage/issues",
"forum": "https://discourse.roots.io/"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"require": {
"php": "^7.3|^8.0",
"log1x/crumb": "^1.0",
"log1x/navi": "^2.0",
"log1x/pagi": "^1.0",
"log1x/poet": "^2.0",
"log1x/sage-directives": "^1.1",
"log1x/sage-html-forms": "^1.0",
"mwdelaney/sage-advanced-custom-fields": "^1.6",
"roots/acorn": "dev-main"
},
"require-dev": {
"filp/whoops": "^2.9",
"squizlabs/php_codesniffer": "^3.5"
},
"suggest": {
"log1x/sage-directives": "A collection of useful Blade directives for WordPress and Sage (^1.0).",
"log1x/sage-svg": "A useful SVG directive for inlining SVG's within Blade views (^1.0)."
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"lint": [
"phpcs --extensions=php --standard=PSR12 app config"
],
"post-autoload-dump": [
"Roots\\Acorn\\ComposerScripts::postAutoloadDump"
]
}
}
In my terminal I am seeing this now after running composer:
> Roots\Acorn\ComposerScripts::postAutoloadDump
What else could I provide that would be helpful?