Initial commit
parents
Showing
.editorconfig
0 → 100755
.env.example
0 → 100755
.gitattributes
0 → 100755
.gitignore
0 → 100755
.idea/.gitignore
0 → 100644
.idea/misc.xml
0 → 100755
.idea/modules.xml
0 → 100755
.idea/php.xml
0 → 100755
.idea/test-parser.iml
0 → 100755
.idea/vcs.xml
0 → 100644
.styleci.yml
0 → 100755
README.md
0 → 100755
_ide_helper.php
0 → 100755
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
app/Console/Commands/ImportRegionsData.php
0 → 100755
app/Console/Kernel.php
0 → 100755
app/Contracts/CityContract.php
0 → 100755
app/Contracts/Contract.php
0 → 100755
app/Contracts/DistrictContract.php
0 → 100755
app/Contracts/GeolocationContract.php
0 → 100755
app/Contracts/RegionContract.php
0 → 100755
app/Contracts/RegionParserContract.php
0 → 100755
app/Exceptions/Handler.php
0 → 100755
app/Http/Controllers/Controller.php
0 → 100755
app/Http/Controllers/HomeController.php
0 → 100755
app/Http/Kernel.php
0 → 100755
app/Http/Middleware/Authenticate.php
0 → 100755
app/Http/Middleware/EncryptCookies.php
0 → 100755
app/Http/Middleware/TrimStrings.php
0 → 100755
app/Http/Middleware/TrustProxies.php
0 → 100755
app/Http/Middleware/VerifyCsrfToken.php
0 → 100755
app/Models/Regions/City.php
0 → 100755
app/Models/Regions/CityTranslation.php
0 → 100755
app/Models/Regions/District.php
0 → 100755
app/Models/Regions/DistrictTranslation.php
0 → 100755
app/Models/Regions/Region.php
0 → 100755
app/Models/Regions/RegionTranslation.php
0 → 100755
app/Models/Users/User.php
0 → 100755
app/Providers/AppServiceProvider.php
0 → 100755
app/Providers/AuthServiceProvider.php
0 → 100755
app/Providers/BroadcastServiceProvider.php
0 → 100755
app/Providers/EventServiceProvider.php
0 → 100755
app/Providers/ModelServiceProvider.php
0 → 100755
app/Providers/ParseServiceProvider.php
0 → 100755
app/Providers/RouteServiceProvider.php
0 → 100755
app/Repositories/CityRepository.php
0 → 100755
app/Repositories/DistrictRepository.php
0 → 100755
app/Repositories/RegionRepository.php
0 → 100755
app/Repositories/Repository.php
0 → 100755
app/Services/Regions/Components/Client.php
0 → 100755
app/Services/Regions/Components/Parser.php
0 → 100755
app/Services/Regions/Jobs/ParseCity.php
0 → 100755
app/Services/Regions/RegionParseService.php
0 → 100755
artisan
0 → 100755
bootstrap/app.php
0 → 100755
bootstrap/cache/.gitignore
0 → 100755
composer.json
0 → 100755
| { | ||
| "name": "testing/locations", | ||
| "type": "project", | ||
| "description": "", | ||
| "keywords": [], | ||
| "license": "MIT", | ||
| "require": { | ||
| "php": "^7.1", | ||
| "ext-json": "*", | ||
| "fabpot/goutte": "^4.0", | ||
| "fideloper/proxy": "^4.0", | ||
| "guzzlehttp/guzzle": "^6.5", | ||
| "koenhoeijmakers/laravel-translatable": "^0.5.0", | ||
| "laravel/framework": "^6.2", | ||
| "laravel/tinker": "^2.0", | ||
| "mcamara/laravel-localization": "^1.4", | ||
| "spatie/geocoder": "^3.6", | ||
| "spatie/laravel-medialibrary": "^7.17", | ||
| "symfony/polyfill-iconv": "^1.13.1" | ||
| }, | ||
| "require-dev": { | ||
| "barryvdh/laravel-ide-helper": "^2.6", | ||
| "facade/ignition": "^1.4", | ||
| "fzaninotto/faker": "^1.4", | ||
| "laravel/ui": "^1.1", | ||
| "mockery/mockery": "^1.0", | ||
| "nunomaduro/collision": "^3.0", | ||
| "phpunit/phpunit": "^8.0" | ||
| }, | ||
| "config": { | ||
| "optimize-autoloader": true, | ||
| "preferred-install": "dist", | ||
| "sort-packages": true | ||
| }, | ||
| "extra": { | ||
| "laravel": { | ||
| "dont-discover": [] | ||
| } | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "App\\": "app/" | ||
| }, | ||
| "classmap": [ | ||
| "database/seeds", | ||
| "database/factories" | ||
| ] | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Tests\\": "tests/" | ||
| } | ||
| }, | ||
| "minimum-stability": "dev", | ||
| "prefer-stable": true, | ||
| "scripts": { | ||
| "post-autoload-dump": [ | ||
| "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
| "@php artisan package:discover --ansi" | ||
| ], | ||
| "post-root-package-install": [ | ||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
| ], | ||
| "post-create-project-cmd": [ | ||
| "@php artisan key:generate --ansi" | ||
| ] | ||
| } | ||
| } |
config/app.php
0 → 100755
config/auth.php
0 → 100755
config/broadcasting.php
0 → 100755
config/cache.php
0 → 100755
config/database.php
0 → 100755
config/filesystems.php
0 → 100755
config/geocoder.php
0 → 100755
config/hashing.php
0 → 100755
config/laravellocalization.php
0 → 100755
config/logging.php
0 → 100755
config/mail.php
0 → 100755
config/medialibrary.php
0 → 100755
config/queue.php
0 → 100755
config/services.php
0 → 100755
config/session.php
0 → 100755
config/translatable.php
0 → 100755
config/view.php
0 → 100755
database/.gitignore
0 → 100755
database/factories/UserFactory.php
0 → 100755
database/seeds/DatabaseSeeder.php
0 → 100755
database/seeds/RegionSeeder.php
0 → 100755
package.json
0 → 100755
| { | ||
| "private": true, | ||
| "scripts": { | ||
| "dev": "npm run development", | ||
| "development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
| "watch": "npm run development -- --watch", | ||
| "watch-poll": "npm run watch -- --watch-poll", | ||
| "hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", | ||
| "prod": "npm run production", | ||
| "production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" | ||
| }, | ||
| "devDependencies": { | ||
| "axios": "^0.19", | ||
| "bootstrap": "^4.0.0", | ||
| "cross-env": "^5.1", | ||
| "jquery": "^3.2", | ||
| "laravel-mix": "^4.0.7", | ||
| "lodash": "^4.17.13", | ||
| "popper.js": "^1.12", | ||
| "resolve-url-loader": "^2.3.1", | ||
| "sass": "^1.15.2", | ||
| "sass-loader": "^7.1.0", | ||
| "vue-template-compiler": "^2.6.11" | ||
| }, | ||
| "dependencies": { | ||
| "bootstrap-3-typeahead": "^4.0.2" | ||
| } | ||
| } |
phpunit.xml
0 → 100755
public/.htaccess
0 → 100755
public/css/app.css
0 → 100755
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/index.php
0 → 100755
public/js/app.js
0 → 100755
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/js/manifest.js
0 → 100755
public/js/vendor.js
0 → 100755
public/mix-manifest.json
0 → 100755
public/robots.txt
0 → 100755
resources/js/app.js
0 → 100755
resources/js/bootstrap.js
0 → 100755
resources/js/custom.js
0 → 100644
resources/lang/en/auth.php
0 → 100755
resources/lang/en/pagination.php
0 → 100755
resources/lang/en/parse.php
0 → 100755
resources/lang/en/passwords.php
0 → 100755
resources/lang/en/ui.php
0 → 100755
resources/lang/en/validation.php
0 → 100755
resources/sass/_custom.scss
0 → 100644
resources/sass/_variables.scss
0 → 100755
resources/sass/app.scss
0 → 100755
resources/views/city.blade.php
0 → 100755
resources/views/components/footer.blade.php
0 → 100755
resources/views/components/header.blade.php
0 → 100755
resources/views/home.blade.php
0 → 100755
resources/views/layouts/main.blade.php
0 → 100755
routes/api.php
0 → 100755
routes/channels.php
0 → 100755
routes/console.php
0 → 100755
routes/web.php
0 → 100755
server.php
0 → 100755
storage/app/.gitignore
0 → 100755
storage/app/public/.gitignore
0 → 100755
storage/framework/.gitignore
0 → 100755
storage/framework/cache/.gitignore
0 → 100755
storage/framework/cache/data/.gitignore
0 → 100755
storage/framework/sessions/.gitignore
0 → 100755
storage/framework/testing/.gitignore
0 → 100755
storage/framework/views/.gitignore
0 → 100755
storage/logs/.gitignore
0 → 100755
webpack.mix.js
0 → 100755
Please
register
or
sign in
to comment