Merge branch 'development' into 'master'
Development See merge request nexus/laravel!2
Showing
.editorconfig
100644 → 100755
File mode changed from 100644 to 100755
.env.example
100644 → 100755
File mode changed from 100644 to 100755
.gitattributes
100644 → 100755
File mode changed from 100644 to 100755
.gitignore
100644 → 100755
.styleci.yml
100644 → 100755
File mode changed from 100644 to 100755
README.md
100644 → 100755
File mode changed from 100644 to 100755
app/Console/Kernel.php
100644 → 100755
File mode changed from 100644 to 100755
app/Exceptions/Handler.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
app/Http/Controllers/Auth/LoginController.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Controllers/Auth/RegisterController.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
app/Http/Controllers/Controller.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Kernel.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/Authenticate.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/CheckForMaintenanceMode.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/EncryptCookies.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/RedirectIfAuthenticated.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/TrimStrings.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/TrustProxies.php
100644 → 100755
File mode changed from 100644 to 100755
app/Http/Middleware/VerifyCsrfToken.php
100644 → 100755
File mode changed from 100644 to 100755
app/Providers/AppServiceProvider.php
100644 → 100755
File mode changed from 100644 to 100755
app/Providers/AuthServiceProvider.php
100644 → 100755
File mode changed from 100644 to 100755
app/Providers/BroadcastServiceProvider.php
100644 → 100755
File mode changed from 100644 to 100755
app/Providers/EventServiceProvider.php
100644 → 100755
File mode changed from 100644 to 100755
app/Providers/RouteServiceProvider.php
100644 → 100755
File mode changed from 100644 to 100755
app/User.php
100644 → 100755
File mode changed from 100644 to 100755
artisan
100644 → 100755
File mode changed from 100644 to 100755
bootstrap/app.php
100644 → 100755
File mode changed from 100644 to 100755
bootstrap/cache/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
composer.json
100644 → 100755
| { | { | ||
| "name": "laravel/laravel", | "name":"laravel/laravel", | ||
| "type": "project", | "type":"project", | ||
| "description": "The Laravel Framework.", | "description":"The Laravel Framework.", | ||
| "keywords": [ | "keywords":[ | ||
| "framework", | "framework", | ||
| "laravel" | "laravel" | ||
| ], | ], | ||
| "license": "MIT", | "license":"MIT", | ||
| "require": { | "require":{ | ||
| "php": "^7.2", | "php":"^7.2", | ||
| "fideloper/proxy": "^4.0", | "fideloper/proxy":"^4.0", | ||
| "laravel/framework": "^6.2", | "laravel/framework":"^6.2", | ||
| "laravel/tinker": "^2.0" | "laravel/tinker":"^2.0", | ||
| }, | "nexus/ninox":"dev-master" | ||
| "require-dev": { | }, | ||
| "facade/ignition": "^1.4", | "require-dev":{ | ||
| "fzaninotto/faker": "^1.4", | "facade/ignition":"^1.4", | ||
| "mockery/mockery": "^1.0", | "fzaninotto/faker":"^1.4", | ||
| "nunomaduro/collision": "^3.0", | "mockery/mockery":"^1.0", | ||
| "phpunit/phpunit": "^8.0" | "nunomaduro/collision":"^3.0", | ||
| }, | "phpunit/phpunit":"^8.0" | ||
| "config": { | }, | ||
| "optimize-autoloader": true, | "config":{ | ||
| "preferred-install": "dist", | "optimize-autoloader":true, | ||
| "sort-packages": true | "preferred-install":"dist", | ||
| }, | "sort-packages":true | ||
| "extra": { | }, | ||
| "laravel": { | "extra":{ | ||
| "dont-discover": [] | "laravel":{ | ||
| "dont-discover":[ | |||
| ] | |||
| } | } | ||
| }, | }, | ||
| "autoload": { | "autoload":{ | ||
| "psr-4": { | "psr-4":{ | ||
| "App\\": "app/" | "App\\":"app/" | ||
| }, | }, | ||
| "classmap": [ | "classmap":[ | ||
| "database/seeds", | "database/seeds", | ||
| "database/factories" | "database/factories" | ||
| ] | ] | ||
| }, | }, | ||
| "autoload-dev": { | "autoload-dev":{ | ||
| "psr-4": { | "psr-4":{ | ||
| "Tests\\": "tests/" | "Tests\\":"tests/" | ||
| } | } | ||
| }, | }, | ||
| "minimum-stability": "dev", | "minimum-stability":"dev", | ||
| "prefer-stable": true, | "prefer-stable":true, | ||
| "scripts": { | "scripts":{ | ||
| "post-autoload-dump": [ | "post-autoload-dump":[ | ||
| "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | "Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
| "@php artisan package:discover --ansi" | "@php artisan package:discover --ansi" | ||
| ], | ], | ||
| "post-root-package-install": [ | "post-root-package-install":[ | ||
| "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | "@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
| ], | ], | ||
| "post-create-project-cmd": [ | "post-create-project-cmd":[ | ||
| "@php artisan key:generate --ansi" | "@php artisan key:generate --ansi" | ||
| ] | ] | ||
| }, | |||
| "repositories":[ | |||
| { | |||
| "type":"git", | |||
| "url":"git@gitlab.bugsmasher.online:nexus/packages/ninox-api.git" | |||
| } | } | ||
| ] | |||
| } | } |
composer.lock
deleted
100644 → 0
This source diff could not be displayed because it is too large. You can view the blob instead.
config/app.php
100644 → 100755
File mode changed from 100644 to 100755
config/auth.php
100644 → 100755
File mode changed from 100644 to 100755
config/broadcasting.php
100644 → 100755
File mode changed from 100644 to 100755
config/cache.php
100644 → 100755
config/database.php
100644 → 100755
File mode changed from 100644 to 100755
config/filesystems.php
100644 → 100755
File mode changed from 100644 to 100755
config/hashing.php
100644 → 100755
File mode changed from 100644 to 100755
config/logging.php
100644 → 100755
File mode changed from 100644 to 100755
config/mail.php
100644 → 100755
File mode changed from 100644 to 100755
config/queue.php
100644 → 100755
File mode changed from 100644 to 100755
config/services.php
100644 → 100755
File mode changed from 100644 to 100755
config/session.php
100644 → 100755
File mode changed from 100644 to 100755
config/view.php
100644 → 100755
File mode changed from 100644 to 100755
database/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
database/factories/UserFactory.php
100644 → 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
File mode changed from 100644 to 100755
database/seeds/DatabaseSeeder.php
100644 → 100755
File mode changed from 100644 to 100755
package.json
100644 → 100755
File mode changed from 100644 to 100755
phpunit.xml
100644 → 100755
File mode changed from 100644 to 100755
public/.htaccess
100644 → 100755
File mode changed from 100644 to 100755
public/favicon.ico
100644 → 100755
File mode changed from 100644 to 100755
public/index.php
100644 → 100755
File mode changed from 100644 to 100755
public/robots.txt
100644 → 100755
File mode changed from 100644 to 100755
public/web.config
100644 → 100755
File mode changed from 100644 to 100755
resources/js/app.js
100644 → 100755
File mode changed from 100644 to 100755
resources/js/bootstrap.js
100644 → 100755
File mode changed from 100644 to 100755
resources/lang/en/auth.php
100644 → 100755
File mode changed from 100644 to 100755
resources/lang/en/pagination.php
100644 → 100755
File mode changed from 100644 to 100755
resources/lang/en/passwords.php
100644 → 100755
File mode changed from 100644 to 100755
resources/lang/en/validation.php
100644 → 100755
File mode changed from 100644 to 100755
resources/sass/app.scss
100644 → 100755
File mode changed from 100644 to 100755
resources/views/welcome.blade.php
100644 → 100755
File mode changed from 100644 to 100755
routes/api.php
100644 → 100755
File mode changed from 100644 to 100755
routes/channels.php
100644 → 100755
File mode changed from 100644 to 100755
routes/console.php
100644 → 100755
File mode changed from 100644 to 100755
routes/web.php
100644 → 100755
File mode changed from 100644 to 100755
server.php
100644 → 100755
File mode changed from 100644 to 100755
storage/app/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/app/public/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/cache/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/cache/data/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/sessions/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/testing/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/framework/views/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
storage/logs/.gitignore
100644 → 100755
File mode changed from 100644 to 100755
tests/CreatesApplication.php
100644 → 100755
File mode changed from 100644 to 100755
tests/Feature/ExampleTest.php
100644 → 100755
File mode changed from 100644 to 100755
tests/TestCase.php
100644 → 100755
File mode changed from 100644 to 100755
tests/Unit/ExampleTest.php
100644 → 100755
File mode changed from 100644 to 100755
webpack.mix.js
100644 → 100755
File mode changed from 100644 to 100755
Please register or sign in to comment