Updates after 7.0 shift

This commit is contained in:
Adam Lavin 2021-02-14 19:09:50 +00:00
parent 3cac627f82
commit 7b64f5b1a7
No known key found for this signature in database
GPG key ID: 9C4C68AFA9CA6461
4 changed files with 902 additions and 1325 deletions

View file

@ -13,7 +13,6 @@
"php": "^7.2.5|^8.0", "php": "^7.2.5|^8.0",
"laravel/framework": "^7.29", "laravel/framework": "^7.29",
"codescale/ffmpeg-php": "2.7.0", "codescale/ffmpeg-php": "2.7.0",
"barryvdh/laravel-ide-helper": "^2.8",
"guzzlehttp/guzzle": "^6.3.1|^7.0.1", "guzzlehttp/guzzle": "^6.3.1|^7.0.1",
"doctrine/dbal": "^3.0", "doctrine/dbal": "^3.0",
"venturecraft/revisionable": "^1.36", "venturecraft/revisionable": "^1.36",
@ -22,7 +21,7 @@
"barryvdh/laravel-debugbar": "^3.5", "barryvdh/laravel-debugbar": "^3.5",
"predis/predis": "^1.1", "predis/predis": "^1.1",
"ksubileau/color-thief-php": "^1.3", "ksubileau/color-thief-php": "^1.3",
"graham-campbell/exceptions": "^12.0", "graham-campbell/exceptions": "^14.0",
"minishlink/web-push": "^1.0", "minishlink/web-push": "^1.0",
"alsofronie/eloquent-uuid": "^1.0", "alsofronie/eloquent-uuid": "^1.0",
"poniverse/api": "dev-rewrite", "poniverse/api": "dev-rewrite",
@ -68,9 +67,6 @@
"post-create-project-cmd": [ "post-create-project-cmd": [
"@php artisan key:generate --ansi" "@php artisan key:generate --ansi"
], ],
"post-update-cmd": [
"php artisan ide-helper:generate"
],
"post-autoload-dump": [ "post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php artisan package:discover --ansi" "@php artisan package:discover --ansi"

2186
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -19,7 +19,7 @@ return [
'allowed_methods' => ['*'], 'allowed_methods' => ['*'],
'allowed_origins' => ['*'], 'allowed_origins' => ['localhost:3000', 'pony.fm', 'stage.pony.fm'],
'allowed_origins_patterns' => [], 'allowed_origins_patterns' => [],

View file

@ -1,14 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupStaticAttributes="false" xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php" bootstrap="vendor/autoload.php"
colors="true" colors="true">
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites> <testsuites>
<testsuite name="Application Test Suite"> <testsuite name="Application Test Suite">
<directory>./tests/</directory> <directory>./tests/</directory>
@ -20,15 +14,16 @@
</whitelist> </whitelist>
</filter> </filter>
<php> <php>
<env name="APP_ENV" value="testing"/> <server name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="CMOxJYitit2cFgI9FbbxJJpWxBBZl6RU"/> <server name="APP_KEY" value="CMOxJYitit2cFgI9FbbxJJpWxBBZl6RU"/>
<env name="BCRYPT_ROUNDS" value="4"/> <server name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/> <server name="MAIL_MAILER" value="array"/>
<env name="SESSION_DRIVER" value="array"/> <server name="QUEUE_CONNECTION" value="sync"/>
<env name="QUEUE_CONNECTION" value="sync"/> <server name="SESSION_DRIVER" value="array"/>
<env name="APP_URL" value="http://ponyfm-dev.poni"/> <server name="TELESCOPE_ENABLED" value="false"/>
<env name="DB_CONNECTION" value="sqlite"/> <server name="APP_URL" value="http://ponyfm-dev.poni"/>
<env name="DB_DATABASE" value=":memory:"/> <server name="DB_CONNECTION" value="sqlite"/>
<env name="PONYFM_DATASTORE" value="/vagrant/storage/app/testing-datastore"/> <server name="DB_DATABASE" value=":memory:"/>
<server name="PONYFM_DATASTORE" value="/vagrant/storage/app/testing-datastore"/>
</php> </php>
</phpunit> </phpunit>