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",
"laravel/framework": "^7.29",
"codescale/ffmpeg-php": "2.7.0",
"barryvdh/laravel-ide-helper": "^2.8",
"guzzlehttp/guzzle": "^6.3.1|^7.0.1",
"doctrine/dbal": "^3.0",
"venturecraft/revisionable": "^1.36",
@ -22,7 +21,7 @@
"barryvdh/laravel-debugbar": "^3.5",
"predis/predis": "^1.1",
"ksubileau/color-thief-php": "^1.3",
"graham-campbell/exceptions": "^12.0",
"graham-campbell/exceptions": "^14.0",
"minishlink/web-push": "^1.0",
"alsofronie/eloquent-uuid": "^1.0",
"poniverse/api": "dev-rewrite",
@ -68,9 +67,6 @@
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-update-cmd": [
"php artisan ide-helper:generate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@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_origins' => ['*'],
'allowed_origins' => ['localhost:3000', 'pony.fm', 'stage.pony.fm'],
'allowed_origins_patterns' => [],

View file

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