mirror of
https://github.com/openclassify/openclassify.git
synced 2026-01-11 18:01:10 -06:00
Pyro 3.8 and PHP 7.4 upgrade
This commit is contained in:
parent
8d4fffff73
commit
c1af909e8a
@ -8,12 +8,5 @@
|
||||
"files": [
|
||||
"src/Support/_helpers.php"
|
||||
]
|
||||
},
|
||||
"require": {
|
||||
"wirelab/language_switcher-plugin": "^1.3",
|
||||
"visiosoft/addblock-extension": "^1.1",
|
||||
"ext-zip": "*",
|
||||
"chumper/zipper": "^1.0",
|
||||
"sentry/sentry-laravel": "*"
|
||||
}
|
||||
}
|
||||
|
||||
@ -620,6 +620,7 @@ class AdvsController extends PublicController
|
||||
|
||||
$options = $this->optionRepository->findAllBy('adv_id', $id);
|
||||
|
||||
$features = array();
|
||||
if ($this->adv_model->is_enabled('customfields')) {
|
||||
$features = app('Visiosoft\CustomfieldsModule\Http\Controller\cfController')->view($adv);
|
||||
}
|
||||
@ -935,6 +936,7 @@ class AdvsController extends PublicController
|
||||
|
||||
$categories = array_keys($cats);
|
||||
|
||||
$custom_fields = array();
|
||||
if ($this->adv_model->is_enabled('customfields')) {
|
||||
$custom_fields = app('Visiosoft\CustomfieldsModule\Http\Controller\cfController')
|
||||
->edit($adv, $categories, $cats);
|
||||
|
||||
@ -4,7 +4,6 @@ use Anomaly\Streams\Platform\Image\Command\MakeImageInstance;
|
||||
use Anomaly\Streams\Platform\Model\Cats\CatsCategoryEntryTranslationsModel;
|
||||
use Illuminate\Http\Request;
|
||||
use Illuminate\Support\Str;
|
||||
use Sunra\PhpSimple\HtmlDomParser;
|
||||
use Visiosoft\CatsModule\Category\CategoryModel;
|
||||
use Visiosoft\CatsModule\Category\Contract\CategoryRepositoryInterface;
|
||||
use Visiosoft\CatsModule\Category\Form\CategoryFormBuilder;
|
||||
|
||||
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../../../bootstrap/autoload.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false">
|
||||
<testsuites>
|
||||
<testsuite name="Addon Test Suite">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./src</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
@ -1,10 +0,0 @@
|
||||
<?php namespace Visiosoft\JsonFieldType\Test\Feature;
|
||||
|
||||
class JsonFieldTypeTest extends \TestCase
|
||||
{
|
||||
|
||||
public function testFeature()
|
||||
{
|
||||
$this->markTestSkipped('Not implemented.');
|
||||
}
|
||||
}
|
||||
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../../../bootstrap/autoload.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false">
|
||||
<testsuites>
|
||||
<testsuite name="Addon Test Suite">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./src</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
@ -52,7 +52,7 @@
|
||||
{{ userForm.open()|raw }}
|
||||
<div class="mt-4 d-flex profile--desc flex-column flex-lg-row">
|
||||
<div class="d-flex d-sm-block m-auto m-sm-0 mr-sm-3">
|
||||
<img src="{{ profile_photo }}">
|
||||
<img src="{{ profile_photo }}" width="150">
|
||||
</div>
|
||||
<div class="pt-2 d-flex flex-column flex-sm-row d-sm-block m-auto m-sm-0">
|
||||
<p class="mb-1 username">{{ user.name }}</p>
|
||||
|
||||
@ -43,21 +43,5 @@ class ProfileModuleSeeder extends Seeder
|
||||
{
|
||||
// Users Fields Seeder
|
||||
$this->call(UsersFieldsSeeder::class);
|
||||
|
||||
if (is_null($this->folders->findBy('slug', 'favicon'))) {
|
||||
$disk = $this->disks->findBySlug('local');
|
||||
|
||||
$this->folders->create([
|
||||
'en' => [
|
||||
'name' => 'Favicon',
|
||||
'description' => 'A folder for Favicon.',
|
||||
],
|
||||
'slug' => 'favicon',
|
||||
'disk' => $disk,
|
||||
'allowed_types' => [
|
||||
'ico','png',
|
||||
],
|
||||
]);
|
||||
};
|
||||
}
|
||||
}
|
||||
@ -1,23 +0,0 @@
|
||||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||||
SET AUTOCOMMIT = 0;
|
||||
START TRANSACTION;
|
||||
SET time_zone = "+00:00";
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!40101 SET NAMES utf8mb4 */;
|
||||
|
||||
|
||||
INSERT INTO `default_files_files` (`id`, `sort_order`, `created_at`, `created_by_id`, `updated_at`, `updated_by_id`, `deleted_at`, `name`, `disk_id`, `folder_id`, `extension`, `size`, `mime_type`, `entry_id`, `entry_type`, `keywords`, `height`, `width`, `alt_text`, `title`, `caption`, `description`) VALUES
|
||||
(135, 1, '2019-08-08 07:35:41', 1, '2019-08-08 07:35:41', 1, NULL, 'adv-clothes.png', 1, 3, 'png', 213372, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '334', '1000', NULL, NULL, NULL, NULL),
|
||||
(136, 2, '2019-08-08 07:35:45', 1, '2019-08-08 07:35:45', 1, NULL, 'adv-clothes2.png', 1, 3, 'png', 262373, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '334', '1000', NULL, NULL, NULL, NULL),
|
||||
(137, 3, '2019-08-08 07:35:49', 1, '2019-08-08 07:35:49', 1, NULL, 'adv-electronics.png', 1, 3, 'png', 156843, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '334', '1000', NULL, NULL, NULL, NULL),
|
||||
(138, 4, '2019-08-08 07:35:52', 1, '2019-08-08 07:35:52', 1, NULL, 'adv-electronics2.png', 1, 3, 'png', 189120, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '334', '1000', NULL, NULL, NULL, NULL),
|
||||
(139, 5, '2019-08-08 07:35:57', 1, '2019-08-08 07:35:57', 1, NULL, 'adv-realestate.png', 1, 3, 'png', 66675, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '333', '1000', NULL, NULL, NULL, NULL),
|
||||
(140, 6, '2019-08-08 07:36:00', 1, '2019-08-08 07:36:00', 1, NULL, 'adv-realestate2.png', 1, 3, 'png', 121117, 'image/png', NULL, 'Anomaly\\Streams\\Platform\\Model\\Files\\FilesAdvListingPageEntryModel', NULL, '334', '1000', NULL, NULL, NULL, NULL);
|
||||
COMMIT;
|
||||
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
@ -1,27 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit backupGlobals="false"
|
||||
backupStaticAttributes="false"
|
||||
bootstrap="../../../../bootstrap/autoload.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false">
|
||||
<testsuites>
|
||||
<testsuite name="Addon Test Suite">
|
||||
<directory suffix="Test.php">./tests</directory>
|
||||
</testsuite>
|
||||
</testsuites>
|
||||
<filter>
|
||||
<whitelist processUncoveredFilesFromWhitelist="true">
|
||||
<directory suffix=".php">./src</directory>
|
||||
</whitelist>
|
||||
</filter>
|
||||
<php>
|
||||
<env name="APP_ENV" value="testing"/>
|
||||
<env name="CACHE_DRIVER" value="array"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="QUEUE_DRIVER" value="sync"/>
|
||||
</php>
|
||||
</phpunit>
|
||||
237
composer.json
237
composer.json
@ -12,128 +12,123 @@
|
||||
{
|
||||
"name": "Visiosoft, Inc.",
|
||||
"email": "support@visiosoft.com.tr"
|
||||
}
|
||||
],
|
||||
"require": {
|
||||
"wikimedia/composer-merge-plugin": "~1.4.0",
|
||||
"anomaly/streams-composer-plugin": "~1.1.0",
|
||||
"visiosoft/streams-platform": "^1.7",
|
||||
"anomaly/default_authenticator-extension": "~2.1.0",
|
||||
"anomaly/throttle_security_check-extension": "~2.1.0",
|
||||
"anomaly/private_storage_adapter-extension": "~1.0.0",
|
||||
"anomaly/default_page_handler-extension": "~2.1.0",
|
||||
"anomaly/user_security_check-extension": "~2.1.0",
|
||||
"anomaly/xml_feed_widget-extension": "~2.1.0",
|
||||
"anomaly/page_link_type-extension": "~2.1.0",
|
||||
"anomaly/url_link_type-extension": "~2.1.0",
|
||||
"anomaly/relationship-field_type": "~2.2.0",
|
||||
"anomaly/colorpicker-field_type": "~2.3.0",
|
||||
"anomaly/polymorphic-field_type": "~2.1.0",
|
||||
"anomaly/checkboxes-field_type": "~2.4.0",
|
||||
"anomaly/encrypted-field_type": "~2.1.0",
|
||||
"anomaly/datetime-field_type": "~3.0.0",
|
||||
"anomaly/repeater-field_type": "~1.3.0",
|
||||
"anomaly/language-field_type": "~2.2.0",
|
||||
"anomaly/multiple-field_type": "~2.3.0",
|
||||
"anomaly/textarea-field_type": "~2.1.0",
|
||||
"anomaly/markdown-field_type": "~3.1.0",
|
||||
"anomaly/wysiwyg-field_type": "~3.1.0",
|
||||
"anomaly/boolean-field_type": "~2.3.0",
|
||||
"anomaly/country-field_type": "~2.3.0",
|
||||
"anomaly/decimal-field_type": "~2.1.0",
|
||||
"anomaly/integer-field_type": "~2.1.0",
|
||||
"anomaly/editor-field_type": "~3.1.0",
|
||||
"anomaly/select-field_type": "~2.3.0",
|
||||
"anomaly/slider-field_type": "~3.0.0",
|
||||
"anomaly/addon-field_type": "~2.2.0",
|
||||
"anomaly/email-field_type": "~2.1.0",
|
||||
"anomaly/state-field_type": "~2.3.0",
|
||||
"anomaly/files-field_type": "~2.3.0",
|
||||
"anomaly/tags-field_type": "~2.4.0",
|
||||
"anomaly/slug-field_type": "~2.1.0",
|
||||
"anomaly/text-field_type": "~2.2.0",
|
||||
"anomaly/file-field_type": "~2.2.0",
|
||||
"anomaly/url-field_type": "~2.2.0",
|
||||
"anomaly/configuration-module": "~2.1.0",
|
||||
"anomaly/preferences-module": "~2.2.0",
|
||||
"anomaly/navigation-module": "~2.4.0",
|
||||
"anomaly/dashboard-module": "~2.2.0",
|
||||
"anomaly/redirects-module": "~2.3.0",
|
||||
"anomaly/variables-module": "~2.4.0",
|
||||
"anomaly/settings-module": "~2.4.0",
|
||||
"anomaly/blocks-module": "~1.3.0",
|
||||
"anomaly/search-module": "~3.0.0",
|
||||
"anomaly/system-module": "~1.0.0",
|
||||
"anomaly/users-module": "~2.5.0",
|
||||
"anomaly/pages-module": "~2.6.0",
|
||||
"anomaly/posts-module": "~2.6.0",
|
||||
"anomaly/files-module": "~2.6.0",
|
||||
"anomaly/contact-plugin": "~1.2.0",
|
||||
"anomaly/helper-plugin": "~2.1.0",
|
||||
"anomaly/robots-extension": "~2.1.0",
|
||||
"anomaly/sitemap-extension": "~2.2.0",
|
||||
"anomaly/html_block-extension": "~1.0.0",
|
||||
"anomaly/wysiwyg_block-extension": "~1.0.0",
|
||||
"ammadeuss/laravel-html-dom-parser": "^1.1",
|
||||
"visiosoft/decimal-field_type": "~2.1.0",
|
||||
"visiosoft/integer-field_type": "~2.1.0",
|
||||
"visiosoft/list-field_type": "*",
|
||||
"guzzlehttp/guzzle": "~6.3.3",
|
||||
"composer/composer": "^1.6"
|
||||
},
|
||||
"replace": {
|
||||
"anomaly/streams-platform": "*"
|
||||
},
|
||||
"require-dev": {
|
||||
"filp/whoops": "~2.0",
|
||||
"phpunit/phpunit": "^7.0",
|
||||
"fzaninotto/faker": "~1.4",
|
||||
"mockery/mockery": "0.9.*",
|
||||
"symfony/css-selector": "3.1.*",
|
||||
"symfony/dom-crawler": "3.1.*",
|
||||
"anomaly/installer-module": "~2.3.0"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.pyrocms.com"
|
||||
},
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://community.pyrocms.com"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"database"
|
||||
}
|
||||
],
|
||||
"psr-4": {
|
||||
"App\\": "app/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"classmap": [
|
||||
"tests/TestCase.php"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"merge-plugin": {
|
||||
"include": [
|
||||
"addons/*/*/*/composer.json",
|
||||
"core/*/*/composer.json"
|
||||
],
|
||||
"recurse": true,
|
||||
"replace": false
|
||||
"require": {
|
||||
"wikimedia/composer-merge-plugin": "~1.4.0",
|
||||
"anomaly/streams-composer-plugin": "~1.1.0",
|
||||
"anomaly/streams-platform": "~1.8.0",
|
||||
"anomaly/default_authenticator-extension": "~2.1.0",
|
||||
"anomaly/throttle_security_check-extension": "~2.1.0",
|
||||
"anomaly/private_storage_adapter-extension": "~1.1.0",
|
||||
"anomaly/default_page_handler-extension": "~2.1.0",
|
||||
"anomaly/user_security_check-extension": "~2.1.0",
|
||||
"anomaly/xml_feed_widget-extension": "~2.1.0",
|
||||
"anomaly/page_link_type-extension": "~2.1.0",
|
||||
"anomaly/url_link_type-extension": "~2.1.0",
|
||||
"anomaly/relationship-field_type": "~2.2.0",
|
||||
"anomaly/colorpicker-field_type": "~2.3.0",
|
||||
"anomaly/polymorphic-field_type": "~2.1.0",
|
||||
"anomaly/checkboxes-field_type": "~2.4.0",
|
||||
"anomaly/encrypted-field_type": "~2.1.0",
|
||||
"anomaly/datetime-field_type": "~3.0.0",
|
||||
"anomaly/repeater-field_type": "~1.3.0",
|
||||
"anomaly/language-field_type": "~2.2.0",
|
||||
"anomaly/multiple-field_type": "~2.3.0",
|
||||
"anomaly/textarea-field_type": "~2.1.0",
|
||||
"anomaly/markdown-field_type": "~3.1.0",
|
||||
"anomaly/wysiwyg-field_type": "~3.1.0",
|
||||
"anomaly/boolean-field_type": "~2.3.0",
|
||||
"anomaly/country-field_type": "~2.3.0",
|
||||
"anomaly/decimal-field_type": "~2.1.0",
|
||||
"anomaly/integer-field_type": "~2.1.0",
|
||||
"anomaly/editor-field_type": "~3.1.0",
|
||||
"anomaly/select-field_type": "~2.3.0",
|
||||
"anomaly/slider-field_type": "~3.0.0",
|
||||
"anomaly/addon-field_type": "~2.2.0",
|
||||
"anomaly/email-field_type": "~2.1.0",
|
||||
"anomaly/state-field_type": "~2.3.0",
|
||||
"anomaly/files-field_type": "~2.3.0",
|
||||
"anomaly/tags-field_type": "~2.4.0",
|
||||
"anomaly/slug-field_type": "~2.1.0",
|
||||
"anomaly/text-field_type": "~2.2.0",
|
||||
"anomaly/file-field_type": "~2.2.0",
|
||||
"anomaly/url-field_type": "~2.2.0",
|
||||
"anomaly/configuration-module": "~2.1.0",
|
||||
"anomaly/preferences-module": "~2.2.0",
|
||||
"anomaly/navigation-module": "~2.4.0",
|
||||
"anomaly/dashboard-module": "~2.2.0",
|
||||
"anomaly/settings-module": "~2.4.0",
|
||||
"anomaly/blocks-module": "~1.3.0",
|
||||
"anomaly/search-module": "~3.0.0",
|
||||
"anomaly/system-module": "~1.1.0",
|
||||
"anomaly/users-module": "~2.5.0",
|
||||
"anomaly/pages-module": "~2.6.0",
|
||||
"anomaly/posts-module": "~2.6.0",
|
||||
"anomaly/files-module": "~2.6.0",
|
||||
"anomaly/contact-plugin": "~1.2.0",
|
||||
"anomaly/helper-plugin": "~2.1.0",
|
||||
"anomaly/robots-extension": "~2.1.0",
|
||||
"anomaly/sitemap-extension": "~2.3.0",
|
||||
"anomaly/html_block-extension": "~1.0.0",
|
||||
"anomaly/wysiwyg_block-extension": "~1.0.0",
|
||||
"visiosoft/decimal-field_type": "~2.1.0",
|
||||
"visiosoft/integer-field_type": "~2.1.0",
|
||||
"visiosoft/list-field_type": "*",
|
||||
"wirelab/language_switcher-plugin": "^1.3",
|
||||
"visiosoft/addblock-extension": "^1.1",
|
||||
"maatwebsite/excel": "*",
|
||||
"google/recaptcha": "1.2.*",
|
||||
"sentry/sentry-laravel": "*",
|
||||
},
|
||||
"laravel": {
|
||||
"dont-discover": [
|
||||
"*"
|
||||
]
|
||||
"require-dev": {
|
||||
"filp/whoops": "~2.0",
|
||||
"fzaninotto/faker": "~1.4",
|
||||
"symfony/css-selector": "3.1.*",
|
||||
"symfony/dom-crawler": "3.1.*",
|
||||
"anomaly/installer-module": "~2.3.0"
|
||||
},
|
||||
"repositories": [
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://packages.pyrocms.com"
|
||||
},
|
||||
{
|
||||
"type": "composer",
|
||||
"url": "https://community.pyrocms.com"
|
||||
}
|
||||
],
|
||||
"autoload": {
|
||||
"classmap": [
|
||||
"database"
|
||||
],
|
||||
"psr-4": {
|
||||
"App\\": "app/"
|
||||
}
|
||||
},
|
||||
"autoload-dev": {
|
||||
"classmap": [
|
||||
"tests/TestCase.php"
|
||||
]
|
||||
},
|
||||
"extra": {
|
||||
"merge-plugin": {
|
||||
"include": [
|
||||
"addons/*/*/*/composer.json",
|
||||
"core/*/*/composer.json"
|
||||
],
|
||||
"recurse": true,
|
||||
"replace": false
|
||||
},
|
||||
"laravel": {
|
||||
"dont-discover": [
|
||||
"*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"bin-dir": "bin",
|
||||
"preferred-install": "dist",
|
||||
"optimize-autoloader": true
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"bin-dir": "bin",
|
||||
"preferred-install": "dist",
|
||||
"optimize-autoloader": true
|
||||
}
|
||||
}
|
||||
|
||||
@ -229,39 +229,41 @@ return [
|
||||
|
||||
'aliases' => [
|
||||
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
||||
'Auth' => Illuminate\Support\Facades\Auth::class,
|
||||
'Blade' => Illuminate\Support\Facades\Blade::class,
|
||||
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
|
||||
'Bus' => Illuminate\Support\Facades\Bus::class,
|
||||
'Cache' => Illuminate\Support\Facades\Cache::class,
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
||||
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
||||
'DB' => Illuminate\Support\Facades\DB::class,
|
||||
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
||||
'Event' => Illuminate\Support\Facades\Event::class,
|
||||
'File' => Illuminate\Support\Facades\File::class,
|
||||
'Gate' => Illuminate\Support\Facades\Gate::class,
|
||||
'Hash' => Illuminate\Support\Facades\Hash::class,
|
||||
'Lang' => Illuminate\Support\Facades\Lang::class,
|
||||
'Log' => Illuminate\Support\Facades\Log::class,
|
||||
'Mail' => Illuminate\Support\Facades\Mail::class,
|
||||
'App' => Illuminate\Support\Facades\App::class,
|
||||
'Arr' => Illuminate\Support\Arr::class,
|
||||
'Artisan' => Illuminate\Support\Facades\Artisan::class,
|
||||
'Auth' => Illuminate\Support\Facades\Auth::class,
|
||||
'Blade' => Illuminate\Support\Facades\Blade::class,
|
||||
'Broadcast' => Illuminate\Support\Facades\Broadcast::class,
|
||||
'Bus' => Illuminate\Support\Facades\Bus::class,
|
||||
'Cache' => Illuminate\Support\Facades\Cache::class,
|
||||
'Config' => Illuminate\Support\Facades\Config::class,
|
||||
'Cookie' => Illuminate\Support\Facades\Cookie::class,
|
||||
'Crypt' => Illuminate\Support\Facades\Crypt::class,
|
||||
'DB' => Illuminate\Support\Facades\DB::class,
|
||||
'Eloquent' => Illuminate\Database\Eloquent\Model::class,
|
||||
'Event' => Illuminate\Support\Facades\Event::class,
|
||||
'File' => Illuminate\Support\Facades\File::class,
|
||||
'Gate' => Illuminate\Support\Facades\Gate::class,
|
||||
'Hash' => Illuminate\Support\Facades\Hash::class,
|
||||
'Lang' => Illuminate\Support\Facades\Lang::class,
|
||||
'Log' => Illuminate\Support\Facades\Log::class,
|
||||
'Mail' => Illuminate\Support\Facades\Mail::class,
|
||||
'Notification' => Illuminate\Support\Facades\Notification::class,
|
||||
'Password' => Illuminate\Support\Facades\Password::class,
|
||||
'Queue' => Illuminate\Support\Facades\Queue::class,
|
||||
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
||||
'Redis' => Illuminate\Support\Facades\Redis::class,
|
||||
'Request' => Illuminate\Support\Facades\Request::class,
|
||||
'Response' => Illuminate\Support\Facades\Response::class,
|
||||
'Route' => Illuminate\Support\Facades\Route::class,
|
||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||
'Session' => Illuminate\Support\Facades\Session::class,
|
||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||
'URL' => Illuminate\Support\Facades\URL::class,
|
||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||
'View' => Illuminate\Support\Facades\View::class,
|
||||
'Password' => Illuminate\Support\Facades\Password::class,
|
||||
'Queue' => Illuminate\Support\Facades\Queue::class,
|
||||
'Redirect' => Illuminate\Support\Facades\Redirect::class,
|
||||
'Redis' => Illuminate\Support\Facades\Redis::class,
|
||||
'Request' => Illuminate\Support\Facades\Request::class,
|
||||
'Response' => Illuminate\Support\Facades\Response::class,
|
||||
'Route' => Illuminate\Support\Facades\Route::class,
|
||||
'Schema' => Illuminate\Support\Facades\Schema::class,
|
||||
'Session' => Illuminate\Support\Facades\Session::class,
|
||||
'Storage' => Illuminate\Support\Facades\Storage::class,
|
||||
'Str' => Illuminate\Support\Str::class,
|
||||
'URL' => Illuminate\Support\Facades\URL::class,
|
||||
'Validator' => Illuminate\Support\Facades\Validator::class,
|
||||
'View' => Illuminate\Support\Facades\View::class,
|
||||
'Sentry' => Sentry\Laravel\Facade::class,
|
||||
|
||||
|
||||
|
||||
@ -91,4 +91,4 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
];
|
||||
];
|
||||
|
||||
@ -15,7 +15,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'driver' => env('SCOUT_DRIVER', null),
|
||||
'driver' => env('SCOUT_DRIVER', 'search'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@ -58,7 +58,7 @@ return [
|
||||
'id' => env('ALGOLIA_APP_ID'),
|
||||
'secret' => env('ALGOLIA_SECRET'),
|
||||
],
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| TNT Configuration
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
use App\Exceptions\ExceptionHandler;
|
||||
|
||||
return [
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Listeners
|
||||
@ -15,7 +15,7 @@ return [
|
||||
|
||||
'listeners' => [
|
||||
\Anomaly\Streams\Platform\Event\Booted::class => [
|
||||
\App\Listeners\Translations::class
|
||||
// \App\Listeners\Translations::class
|
||||
],
|
||||
\Anomaly\Streams\Platform\Ui\Form\Event\FormWasSaved::class => [
|
||||
\App\Listeners\EnableMaintenanceMode::class
|
||||
@ -32,7 +32,7 @@ return [
|
||||
*/
|
||||
|
||||
'bindings' => [
|
||||
'Anomaly\Streams\Platform\Exception\ExceptionHandler' => ExceptionHandler::class
|
||||
// 'Anomaly\Streams\Platform\Exception\ExceptionHandler' => ExceptionHandler::class
|
||||
],
|
||||
|
||||
/*
|
||||
@ -129,7 +129,7 @@ return [
|
||||
*/
|
||||
|
||||
'middleware_priority' => [],
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| View Overrides
|
||||
@ -140,7 +140,7 @@ return [
|
||||
*/
|
||||
|
||||
'overrides' => [],
|
||||
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Control Panel Customization
|
||||
|
||||
Loading…
Reference in New Issue
Block a user