diff --git a/composer.lock b/composer.lock index fed1da7..63e559c 100644 --- a/composer.lock +++ b/composer.lock @@ -2761,6 +2761,79 @@ ], "time": "2020-12-17T20:55:32+00:00" }, + { + "name": "nestedset/willaarts", + "version": "v5.0.7", + "source": { + "type": "git", + "url": "https://github.com/aliqasemi/laravel-nestedset.git", + "reference": "6ce0f09d89423df59b82169c6dbeb30e7a0b4e74" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/aliqasemi/laravel-nestedset/zipball/6ce0f09d89423df59b82169c6dbeb30e7a0b4e74", + "reference": "6ce0f09d89423df59b82169c6dbeb30e7a0b4e74", + "shasum": "" + }, + "require": { + "illuminate/database": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0", + "illuminate/events": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0", + "illuminate/support": "~5.7.0|~5.8.0|^6.0|^7.0|^8.0", + "php": ">=7.1.3" + }, + "require-dev": { + "phpunit/phpunit": "7.*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "v5.0.x-dev" + }, + "laravel": { + "providers": [ + "Kalnoy\\Nestedset\\NestedSetServiceProvider" + ] + } + }, + "autoload": { + "psr-4": { + "Kalnoy\\Nestedset\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Alexander Kalnoy", + "email": "lazychaser@gmail.com" + } + ], + "description": "Nested Set Model for Laravel 5.7 and up", + "keywords": [ + "database", + "hierarchy", + "laravel", + "nested sets", + "nsm" + ], + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "funding": [ + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2020-12-17T20:55:32+00:00" + }, { "name": "nestedset/willaarts", "version": "v5.0.7", @@ -6313,6 +6386,89 @@ ], "time": "2020-09-07T11:33:47+00:00" }, + { + "name": "symfony/string", + "version": "v5.2.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/string.git", + "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/string/zipball/5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed", + "reference": "5bd67751d2e3f7d6f770c9154b8fbcb2aa05f7ed", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-intl-grapheme": "~1.0", + "symfony/polyfill-intl-normalizer": "~1.0", + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "~1.15" + }, + "require-dev": { + "symfony/error-handler": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/translation-contracts": "^1.1|^2", + "symfony/var-exporter": "^4.4|^5.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\String\\": "" + }, + "files": [ + "Resources/functions.php" + ], + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony String component", + "homepage": "https://symfony.com", + "keywords": [ + "grapheme", + "i18n", + "string", + "unicode", + "utf-8", + "utf8" + ], + "support": { + "source": "https://github.com/symfony/service-contracts/tree/master" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-09-07T11:33:47+00:00" + }, { "name": "symfony/string", "version": "v5.2.1", @@ -7043,7 +7199,9 @@ "reference": "92e33e05729a5b315a7984140b8a1030ed38fbb7" }, "require": { - "php": "^7.1.3" + "php": "^7.1.3", + "wm/common": "dev-master", + "wm/core": "dev-master" }, "require-dev": { "orchestra/testbench": "~3.6.0", diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index c3cc0de..2e49b8d 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -11,16 +11,15 @@ class DatabaseSeeder extends Seeder */ public function run() { - // $this->call(UserSeeder::class); - // $this->call(BusinessSeeder::class); - // $this->call(CategorySeeder::class); - // $this->call(CitySeeder::class); - // $this->call(DistrictSeeder::class); - // $this->call(DomainSeeder::class); - // $this->call(HelpSeeder::class); - // $this->call(ModuleSeeder::class); - // $this->call(PermissionCategorySeeder::class); - // $this->call(RoleSeeder::class); - $this->call(StoreSeeder::class); + $this->call(UserSeeder::class); + $this->call(BusinessSeeder::class); + $this->call(CategorySeeder::class); + $this->call(CitySeeder::class); + $this->call(DistrictSeeder::class); + $this->call(DomainSeeder::class); + $this->call(HelpSeeder::class); + $this->call(ModuleSeeder::class); + $this->call(PermissionCategorySeeder::class); + $this->call(RoleSeeder::class); } }