Initial Commit
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
.styleci.yml
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Models/DummyData.php
0 → 100644
app/User.php
0 → 100644
artisan
0 → 100755
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The Laravel Framework.", | ||
"keywords": [ | ||
"framework", | ||
"laravel" | ||
], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^7.1.3", | ||
"barryvdh/laravel-dompdf": "^0.8.5", | ||
"fideloper/proxy": "^4.0", | ||
"laravel/framework": "5.8.*", | ||
"laravel/tinker": "^1.0" | ||
}, | ||
"require-dev": { | ||
"beyondcode/laravel-dump-server": "^1.0", | ||
"filp/whoops": "^2.0", | ||
"fzaninotto/faker": "^1.4", | ||
"mockery/mockery": "^1.0", | ||
"nunomaduro/collision": "^3.0", | ||
"phpunit/phpunit": "^7.5" | ||
}, | ||
"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" | ||
] | ||
} | ||
} |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
config/app.php
0 → 100644
config/auth.php
0 → 100644
config/broadcasting.php
0 → 100644
config/cache.php
0 → 100644
config/database.php
0 → 100644
config/dompdf.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
package.json
0 → 100644
{ | ||
"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.18", | ||
"bootstrap": "^4.1.0", | ||
"cross-env": "^5.1", | ||
"jquery": "^3.2", | ||
"laravel-mix": "^4.0.7", | ||
"lodash": "^4.17.5", | ||
"popper.js": "^1.12", | ||
"resolve-url-loader": "^2.3.1", | ||
"sass": "^1.15.2", | ||
"sass-loader": "^7.1.0", | ||
"vue": "^2.5.17" | ||
} | ||
} |
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/css/app.css
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
public/css/fonts.css
0 → 100644
public/favicon.ico
0 → 100644
public/index.php
0 → 100644
public/js/app.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
public/robots.txt
0 → 100644
public/web.config
0 → 100644
readme.md
0 → 100644
resources/js/app.js
0 → 100644
resources/js/bootstrap.js
0 → 100644
resources/lang/en/auth.php
0 → 100644
resources/sass/app.scss
0 → 100644
routes/api.php
0 → 100644
routes/channels.php
0 → 100644
routes/console.php
0 → 100644
routes/web.php
0 → 100644
server.php
0 → 100644
storage/app/.gitignore
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/Symbol.afm
0 → 100644
storage/fonts/ipag.ttf
0 → 100755
File added
storage/fonts/ipag.ufm
0 → 100755
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipag.ufm.php
0 → 100755
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipag_b.ttf
0 → 100644
File added
storage/fonts/ipag_b.ufm
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipag_b.ufm.php
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipagp.ttf
0 → 100644
File added
storage/fonts/ipagp.ufm
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipagp.ufm.php
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/fonts/ipagp_b.ttf
0 → 100644
File added
storage/fonts/ipagp_b.ufm
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
storage/framework/.gitignore
0 → 100644
storage/logs/.gitignore
0 → 100644
tests/CreatesApplication.php
0 → 100644
tests/TestCase.php
0 → 100644
tests/Unit/ExampleTest.php
0 → 100644
webpack.mix.js
0 → 100644
Please register or sign in to comment