初始化
parents
Showing
.editorconfig
0 → 100644
.env.example
0 → 100644
.gitattributes
0 → 100644
.gitignore
0 → 100644
README.md
0 → 100644
app/Console/Kernel.php
0 → 100644
app/Exceptions/Handler.php
0 → 100644
app/Http/Controllers/Controller.php
0 → 100644
app/Http/Controllers/Web/HomeController.php
0 → 100644
app/Http/Kernel.php
0 → 100644
app/Http/Middleware/Authenticate.php
0 → 100644
app/Http/Middleware/EncryptCookies.php
0 → 100644
app/Http/Middleware/TrimStrings.php
0 → 100644
app/Http/Middleware/TrustHosts.php
0 → 100644
app/Http/Middleware/TrustProxies.php
0 → 100644
app/Http/Middleware/ValidateSignature.php
0 → 100644
app/Http/Middleware/VerifyCsrfToken.php
0 → 100644
app/Models/User.php
0 → 100644
app/Providers/AppServiceProvider.php
0 → 100644
app/Providers/AuthServiceProvider.php
0 → 100644
app/Providers/BroadcastServiceProvider.php
0 → 100644
app/Providers/EventServiceProvider.php
0 → 100644
app/Providers/RouteServiceProvider.php
0 → 100644
artisan
0 → 100644
bootstrap/app.php
0 → 100644
bootstrap/cache/.gitignore
0 → 100644
bootstrap/ssr/ssr.mjs
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The Laravel Framework.", | ||
"keywords": ["framework", "laravel"], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^8.0.2", | ||
"guzzlehttp/guzzle": "^7.2", | ||
"inertiajs/inertia-laravel": "^0.6.9", | ||
"laravel/framework": "^9.19", | ||
"laravel/sanctum": "^3.0", | ||
"laravel/tinker": "^2.7" | ||
}, | ||
"require-dev": { | ||
"fakerphp/faker": "^1.9.1", | ||
"laravel/pint": "^1.0", | ||
"laravel/sail": "^1.0.1", | ||
"mockery/mockery": "^1.4.4", | ||
"nunomaduro/collision": "^6.1", | ||
"phpunit/phpunit": "^9.5.10", | ||
"spatie/laravel-ignition": "^1.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"App\\": "app/", | ||
"Database\\Factories\\": "database/factories/", | ||
"Database\\Seeders\\": "database/seeders/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\": "tests/" | ||
} | ||
}, | ||
"scripts": { | ||
"post-autoload-dump": [ | ||
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump", | ||
"@php artisan package:discover --ansi" | ||
], | ||
"post-update-cmd": [ | ||
"@php artisan vendor:publish --tag=laravel-assets --ansi --force" | ||
], | ||
"post-root-package-install": [ | ||
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\"" | ||
], | ||
"post-create-project-cmd": [ | ||
"@php artisan key:generate --ansi" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
} |
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/cors.php
0 → 100644
config/database.php
0 → 100644
config/filesystems.php
0 → 100644
config/hashing.php
0 → 100644
config/inertia.php
0 → 100644
config/logging.php
0 → 100644
config/mail.php
0 → 100644
config/queue.php
0 → 100644
config/sanctum.php
0 → 100644
config/services.php
0 → 100644
config/session.php
0 → 100644
config/view.php
0 → 100644
database/.gitignore
0 → 100644
database/factories/UserFactory.php
0 → 100644
database/seeders/DatabaseSeeder.php
0 → 100644
lang/en/auth.php
0 → 100644
lang/en/pagination.php
0 → 100644
lang/en/passwords.php
0 → 100644
lang/en/validation.php
0 → 100644
This diff is collapsed.
Click to expand it.
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 → 100644
{ | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "vite build", | ||
"build:ssr": "vite build && vite build --ssr" | ||
}, | ||
"devDependencies": { | ||
"@inertiajs/react": "^1.0.7", | ||
"@reduxjs/toolkit": "^1.9.5", | ||
"@types/react": "^18.2.8", | ||
"@vitejs/plugin-react": "^4.0.0", | ||
"axios": "^1.1.2", | ||
"laravel-vite-plugin": "^0.7.2", | ||
"less": "^4.1.3", | ||
"less-loader": "^11.1.2", | ||
"lodash": "^4.17.19", | ||
"postcss": "^8.1.14", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"react-redux": "^8.0.7", | ||
"redux": "^4.2.1", | ||
"redux-devtools-extension": "^2.13.9", | ||
"redux-thunk": "^2.4.2", | ||
"typescript": "^5.1.3", | ||
"vite": "^4.0.0", | ||
"vite-plugin-compression": "^0.5.1", | ||
"vite-plugin-svgr": "^3.2.0" | ||
} | ||
} |
phpunit.xml
0 → 100644
public/.htaccess
0 → 100644
public/build/assets/app-f8d7441a.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
public/build/assets/app-f8d7441a.js.gz
0 → 100644
File added
public/build/manifest.json
0 → 100644
public/favicon.ico
0 → 100644
public/index.php
0 → 100644
public/nginx.htaccess
0 → 100644
public/robots.txt
0 → 100644
resources/assets/svg/add.svg
0 → 100644
resources/assets/svg/header/logo.svg
0 → 100644
resources/css/app.css
0 → 100644
resources/css/color.less
0 → 100644
resources/css/flex.less
0 → 100644
resources/css/index.less
0 → 100644
resources/css/line.less
0 → 100644
resources/css/test.css
0 → 100644
resources/css/ui.less
0 → 100644
resources/css/variables.less
0 → 100644
resources/js/Layout/index.less
0 → 100644
resources/js/Layout/index.tsx
0 → 100644
resources/js/Pages/Detail/index.tsx
0 → 100644
resources/js/Pages/Home/index.tsx
0 → 100644
resources/js/app.jsx
0 → 100644
resources/js/bootstrap.js
0 → 100644
resources/js/redux/reducers/count.ts
0 → 100644
resources/js/redux/reducers/index.ts
0 → 100644
resources/js/redux/reducers/list.ts
0 → 100644
resources/js/redux/store.ts
0 → 100644
resources/js/ssr.jsx
0 → 100644
resources/js/utils/tool.ts
0 → 100644
resources/views/app.blade.php
0 → 100644
resources/views/welcome.blade.php
0 → 100644
This diff is collapsed.
Click to expand it.
routes/api.php
0 → 100644
routes/channels.php
0 → 100644
routes/console.php
0 → 100644
routes/web.php
0 → 100644
storage/app/.gitignore
0 → 100644
storage/app/public/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/cache/data/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/sessions/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/testing/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/framework/views/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
storage/logs/.gitignore
0 → 100644
This diff is collapsed.
Click to expand it.
tests/CreatesApplication.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Feature/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/TestCase.php
0 → 100644
This diff is collapsed.
Click to expand it.
tests/Unit/ExampleTest.php
0 → 100644
This diff is collapsed.
Click to expand it.
vite.config.js
0 → 100644
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to comment