The first commit to show the skills with VueJS
parents
Showing
.babelrc
0 → 100755
.editorconfig
0 → 100755
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100755
README.md
0 → 100755
app/Console/Commands/StartSocket.php
0 → 100644
app/Console/Kernel.php
0 → 100755
app/Exceptions/Handler.php
0 → 100755
app/Http/Controllers/Controller.php
0 → 100755
app/Http/Controllers/HomeController.php
0 → 100644
app/Http/Controllers/UserController.php
0 → 100644
app/Http/Kernel.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/Http/Requests/RegisterAuthRequest.php
0 → 100644
app/Http/Services/Socket/BaseSocket.php
0 → 100644
app/Http/Services/Socket/Socket.php
0 → 100644
app/Http/Services/Users/Destroy.php
0 → 100644
app/Http/Services/Users/Edit.php
0 → 100644
app/Http/Services/Users/Index.php
0 → 100644
app/Http/Services/Users/Store.php
0 → 100644
app/Http/Services/Users/Update.php
0 → 100644
app/Jobs/Test.php
0 → 100644
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/RouteServiceProvider.php
0 → 100755
app/Repositories/UserRepository.php
0 → 100755
app/User.php
0 → 100755
artisan
0 → 100755
bootstrap/app.php
0 → 100755
bootstrap/cache/.gitignore
0 → 100755
composer.json
0 → 100755
| { | |||
| "name": "laravel/laravel", | |||
| "description": "The Laravel Framework.", | |||
| "keywords": ["framework", "laravel"], | |||
| "license": "MIT", | |||
| "type": "project", | |||
| "require": { | |||
| "php": "^7.1.3", | |||
| "barryvdh/laravel-cors": "^0.11.2", | |||
| "cboden/ratchet": "0.3.3", | |||
| "fideloper/proxy": "^4.0", | |||
| "laravel/framework": "5.6.*", | |||
| "laravel/tinker": "^1.0", | |||
| "tymon/jwt-auth": "dev-develop" | |||
| }, | |||
| "require-dev": { | |||
| "barryvdh/laravel-debugbar": "^3.2", | |||
| "filp/whoops": "^2.0", | |||
| "fzaninotto/faker": "^1.4", | |||
| "mockery/mockery": "^1.0", | |||
| "nunomaduro/collision": "^2.0", | |||
| "phpunit/phpunit": "^7.0" | |||
| }, | |||
| "autoload": { | |||
| "classmap": [ | |||
| "database/seeds", | |||
| "database/factories" | |||
| ], | |||
| "psr-4": { | |||
| "App\\": "app/" | |||
| } | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "Tests\\": "tests/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "laravel": { | |||
| "dont-discover": [ | |||
| ] | |||
| } | |||
| }, | |||
| "scripts": { | |||
| "post-root-package-install": [ | |||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | |||
| ], | |||
| "post-create-project-cmd": [ | |||
| "@php artisan key:generate" | |||
| ], | |||
| "post-autoload-dump": [ | |||
| "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | |||
| "@php artisan package:discover" | |||
| ] | |||
| }, | |||
| "config": { | |||
| "preferred-install": "dist", | |||
| "sort-packages": true, | |||
| "optimize-autoloader": true | |||
| }, | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true | |||
| } |
composer.lock
0 → 100755
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/app.php
0 → 100755
config/auth.php
0 → 100755
config/broadcasting.php
0 → 100755
config/cache.php
0 → 100755
config/cors.php
0 → 100644
config/database.php
0 → 100755
config/debugbar.php
0 → 100755
config/filesystems.php
0 → 100755
config/hashing.php
0 → 100755
config/jwt.php
0 → 100644
This diff is collapsed.
Click to expand it.
config/logging.php
0 → 100755
config/mail.php
0 → 100755
config/queue.php
0 → 100755
config/services.php
0 → 100755
config/session.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/UsersTableSeeder.php
0 → 100644
index.html
0 → 100755
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100755
| { | |||
| "name": "test", | |||
| "description": "A Vue.js project", | |||
| "version": "1.0.0", | |||
| "author": "Vladidas <vlad.golubtsov@ukr.net>", | |||
| "license": "MIT", | |||
| "private": true, | |||
| "scripts": { | |||
| "dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot", | |||
| "build": "cross-env NODE_ENV=production webpack --progress --hide-modules" | |||
| }, | |||
| "dependencies": { | |||
| "axios": "^0.18.0", | |||
| "vue": "^2.5.11", | |||
| "vue-router": "^3.0.2", | |||
| "vuex": "^3.1.0" | |||
| }, | |||
| "browserslist": [ | |||
| "> 1%", | |||
| "last 2 versions", | |||
| "not ie <= 8" | |||
| ], | |||
| "devDependencies": { | |||
| "babel-core": "^6.26.0", | |||
| "babel-loader": "^7.1.2", | |||
| "babel-preset-env": "^1.6.0", | |||
| "babel-preset-stage-3": "^6.24.1", | |||
| "cross-env": "^5.0.5", | |||
| "css-loader": "^0.28.7", | |||
| "file-loader": "^1.1.4", | |||
| "vue-loader": "^13.0.5", | |||
| "vue-template-compiler": "^2.4.4", | |||
| "webpack": "^3.6.0", | |||
| "webpack-dev-server": "^2.9.1" | |||
| } | |||
| } |
phpunit.xml
0 → 100755
public/.htaccess
0 → 100755
public/App.vue
0 → 100755
public/assets/logo.png
0 → 100755
6.69 KB
public/favicon.ico
0 → 100755
public/index.php
0 → 100755
public/main.js
0 → 100755
public/pages/Counter.vue
0 → 100755
public/pages/Home.vue
0 → 100755
public/pages/admin/Home.vue
0 → 100755
public/pages/auth/Login.vue
0 → 100755
public/pages/auth/Logout.vue
0 → 100755
public/pages/auth/Register.vue
0 → 100755
public/pages/chat/Chat.vue
0 → 100755
public/pages/users/UserCreate.vue
0 → 100755
public/pages/users/UserEdit.vue
0 → 100755
public/pages/users/UserForm.vue
0 → 100755
public/pages/users/UsersIndex.vue
0 → 100755
public/router/index.js
0 → 100644
public/services/websocket.js
0 → 100644
public/store/index.js
0 → 100644
readme.md
0 → 100755
resources/assets/js/app.js
0 → 100755
resources/assets/js/bootstrap.js
0 → 100755
resources/assets/sass/_variables.scss
0 → 100755
resources/assets/sass/app.scss
0 → 100755
resources/lang/en/auth.php
0 → 100755
resources/lang/en/pagination.php
0 → 100755
This diff is collapsed.
Click to expand it.
resources/lang/en/passwords.php
0 → 100755
This diff is collapsed.
Click to expand it.
resources/lang/en/validation.php
0 → 100755
This diff is collapsed.
Click to expand it.
resources/views/auth/login.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
This diff is collapsed.
Click to expand it.
resources/views/auth/register.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/home.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
resources/views/layouts/app.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/api.php
0 → 100755
This diff is collapsed.
Click to expand it.
routes/channels.php
0 → 100755
This diff is collapsed.
Click to expand it.
routes/console.php
0 → 100755
This diff is collapsed.
Click to expand it.
routes/web.php
0 → 100755
This diff is collapsed.
Click to expand it.
server.php
0 → 100755
This diff is collapsed.
Click to expand it.
storage/app/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/app/public/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/debugbar/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/framework/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/framework/cache/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/framework/sessions/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100755
This diff is collapsed.
Click to expand it.
tests/CreatesApplication.php
0 → 100755
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100755
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100755
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100755
This diff is collapsed.
Click to expand it.
webpack.config.js
0 → 100755
This diff is collapsed.
Click to expand it.
webpack.mix.js
0 → 100755
This diff is collapsed.
Click to expand it.