Skip to content

Commit

Permalink
added press
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond committed Jul 23, 2024
1 parent 630c2e5 commit a427501
Show file tree
Hide file tree
Showing 2,878 changed files with 1,344,530 additions and 0 deletions.
27 changes: 27 additions & 0 deletions public/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"name": "moox/wp-install",
"type": "wordpress-core",
"autoload": {
"psr-4": {
"Moox\\WpInstall\\": "src/"
}
},
"authors": [
{
"name": "Alf Drollinger",
"email": "alf@drollinger.info"
}
],
"require": {
"roots/wordpress": "^6.4",
"vlucas/phpdotenv": "^5.6"
},
"extra": {
"wordpress-install-dir": "wp"
},
"config": {
"allow-plugins": {
"roots/wordpress-core-installer": true
}
}
}
25 changes: 25 additions & 0 deletions public/vendor/autoload.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<?php

// autoload.php @generated by Composer

if (PHP_VERSION_ID < 50600) {
if (!headers_sent()) {
header('HTTP/1.1 500 Internal Server Error');
}
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
if (!ini_get('display_errors')) {
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
fwrite(STDERR, $err);
} elseif (!headers_sent()) {
echo $err;
}
}
trigger_error(
$err,
E_USER_ERROR
);
}

require_once __DIR__ . '/composer/autoload_real.php';

return ComposerAutoloaderInitc06d2cf3e3853cb06a061661f688ef31::getLoader();
Loading

0 comments on commit a427501

Please sign in to comment.