mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-27 09:11:26 -05:00
Compare commits
2 commits
e4a4dbbedb
...
bfb99237da
Author | SHA1 | Date | |
---|---|---|---|
|
bfb99237da | ||
|
bc9e607c4a |
14 changed files with 1746 additions and 1834 deletions
|
@ -1 +1 @@
|
|||
f419821bd8cbc736ac6f9b2fce75a4e373a4b49f
|
||||
1a4d1dc81f7924259885250d011ffad24728cd86
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
"intervention/image": "^2.7.2",
|
||||
"laravel/framework": "^10.10",
|
||||
"laravel/helpers": "^1.6",
|
||||
"laravel/sanctum": "^3.2",
|
||||
"laravel/sanctum": "^3.3",
|
||||
"laravel/tinker": "^2.8",
|
||||
"laravel/ui": "^4.2.1",
|
||||
"phpoffice/phpspreadsheet": "^1.28.0",
|
||||
|
|
1207
composer.lock
generated
1207
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -141,7 +141,7 @@ return [
|
|||
|
||||
'maintenance' => [
|
||||
'driver' => 'file',
|
||||
// 'store' => 'redis',
|
||||
// 'store' => 'redis',
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
@ -29,7 +29,8 @@ return [
|
|||
*/
|
||||
|
||||
'bcrypt' => [
|
||||
'rounds' => env('BCRYPT_ROUNDS', 10),
|
||||
'rounds' => env('BCRYPT_ROUNDS', 12),
|
||||
'verify' => true,
|
||||
],
|
||||
|
||||
/*
|
||||
|
@ -47,6 +48,7 @@ return [
|
|||
'memory' => 65536,
|
||||
'threads' => 1,
|
||||
'time' => 4,
|
||||
'verify' => true,
|
||||
],
|
||||
|
||||
];
|
||||
|
|
|
@ -29,7 +29,7 @@ return [
|
|||
| mailers below. You are free to add additional mailers as required.
|
||||
|
|
||||
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
|
||||
| "postmark", "log", "array", "failover"
|
||||
| "postmark", "log", "array", "failover", "roundrobin"
|
||||
|
|
||||
*/
|
||||
|
||||
|
@ -50,15 +50,16 @@ return [
|
|||
'transport' => 'ses',
|
||||
],
|
||||
|
||||
'mailgun' => [
|
||||
'transport' => 'mailgun',
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
// 'message_stream_id' => null,
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
],
|
||||
|
||||
'postmark' => [
|
||||
'transport' => 'postmark',
|
||||
'mailgun' => [
|
||||
'transport' => 'mailgun',
|
||||
// 'client' => [
|
||||
// 'timeout' => 5,
|
||||
// ],
|
||||
|
@ -85,6 +86,14 @@ return [
|
|||
'log',
|
||||
],
|
||||
],
|
||||
|
||||
'roundrobin' => [
|
||||
'transport' => 'roundrobin',
|
||||
'mailers' => [
|
||||
'ses',
|
||||
'postmark',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
/*
|
||||
|
|
|
@ -41,13 +41,28 @@ return [
|
|||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value controls the number of minutes until an issued token will be
|
||||
| considered expired. If this value is null, personal access tokens do
|
||||
| not expire. This won't tweak the lifetime of first-party sessions.
|
||||
| considered expired. This will override any values set in the token's
|
||||
| "expires_at" attribute, but first-party sessions are not affected.
|
||||
|
|
||||
*/
|
||||
|
||||
'expiration' => null,
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Token Prefix
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Sanctum can prefix new tokens in order to take advantage of numerous
|
||||
| security scanning initiatives maintained by open source platforms
|
||||
| that notify developers if they commit tokens into repositories.
|
||||
|
|
||||
| See: https://docs.github.com/en/code-security/secret-scanning/about-secret-scanning
|
||||
|
|
||||
*/
|
||||
|
||||
'token_prefix' => env('SANCTUM_TOKEN_PREFIX', ''),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Sanctum Middleware
|
||||
|
@ -60,8 +75,9 @@ return [
|
|||
*/
|
||||
|
||||
'middleware' => [
|
||||
'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
|
||||
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
|
||||
'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
|
||||
'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
|
||||
],
|
||||
|
||||
];
|
||||
|
|
|
@ -198,4 +198,17 @@ return [
|
|||
|
||||
'same_site' => 'lax',
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Partitioned Cookies
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Setting this value to true will tie the cookie to the top-level site for
|
||||
| a cross-site context. Partitioned cookies are accepted by the browser
|
||||
| when flagged "secure" and the Same-Site attribute is set to "none".
|
||||
|
|
||||
*/
|
||||
|
||||
'partitioned' => false,
|
||||
|
||||
];
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
namespace Database\Factories;
|
||||
|
||||
use Illuminate\Database\Eloquent\Factories\Factory;
|
||||
use Illuminate\Support\Facades\Hash;
|
||||
use Illuminate\Support\Str;
|
||||
|
||||
/**
|
||||
|
@ -10,6 +11,11 @@ use Illuminate\Support\Str;
|
|||
*/
|
||||
class UserFactory extends Factory
|
||||
{
|
||||
/**
|
||||
* The current password being used by the factory.
|
||||
*/
|
||||
protected static ?string $password;
|
||||
|
||||
/**
|
||||
* Define the model's default state.
|
||||
*
|
||||
|
@ -21,7 +27,7 @@ class UserFactory extends Factory
|
|||
'name' => fake()->name(),
|
||||
'email' => fake()->unique()->safeEmail(),
|
||||
'email_verified_at' => now(),
|
||||
'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
|
||||
'password' => static::$password ??= Hash::make('password'),
|
||||
'remember_token' => Str::random(10),
|
||||
];
|
||||
}
|
||||
|
|
2248
package-lock.json
generated
2248
package-lock.json
generated
File diff suppressed because it is too large
Load diff
30
package.json
30
package.json
|
@ -5,28 +5,28 @@
|
|||
"dev": "gulp default watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "2.29.3"
|
||||
"browser-sync": "3.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "7.23.0",
|
||||
"@babel/preset-env": "7.22.20",
|
||||
"@fortawesome/fontawesome-free": "6.4.2",
|
||||
"@babel/core": "7.23.7",
|
||||
"@babel/preset-env": "7.23.8",
|
||||
"@fortawesome/fontawesome-free": "6.5.1",
|
||||
"@mr-hope/gulp-sass": "3.1.1",
|
||||
"autonumeric": "4.10.0",
|
||||
"autonumeric": "4.10.2",
|
||||
"autoprefixer": "10.4.16",
|
||||
"axios": "1.5.1",
|
||||
"axios": "1.6.5",
|
||||
"babel-loader": "9.1.3",
|
||||
"bootstrap": "5.3.2",
|
||||
"easymde": "2.18.0",
|
||||
"fancy-log": "2.0.0",
|
||||
"flatpickr": "4.6.13",
|
||||
"gsap": "3.12.2",
|
||||
"gsap": "3.12.4",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-babel": "8.0.0",
|
||||
"gulp-clean-css": "4.3.0",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-plumber": "1.2.1",
|
||||
"gulp-postcss": "9.0.1",
|
||||
"gulp-postcss": "9.1.0",
|
||||
"gulp-sass-glob": "1.1.0",
|
||||
"gulp-strip-debug": "4.0.0",
|
||||
"gulp-uglify-es": "3.0.0",
|
||||
|
@ -34,16 +34,16 @@
|
|||
"list.js": "2.3.1",
|
||||
"minimist": "1.2.8",
|
||||
"popper.js": "1.16.1",
|
||||
"postcss": "8.4.31",
|
||||
"sass": "1.69.0",
|
||||
"sortablejs": "1.15.0",
|
||||
"postcss": "8.4.33",
|
||||
"sass": "1.69.7",
|
||||
"sortablejs": "1.15.1",
|
||||
"spinkit": "2.0.1",
|
||||
"terser-webpack-plugin": "5.3.9",
|
||||
"vue": "3.3.4",
|
||||
"vue-loader": "17.2.2",
|
||||
"terser-webpack-plugin": "5.3.10",
|
||||
"vue": "3.4.12",
|
||||
"vue-loader": "17.4.2",
|
||||
"vue-router": "4.2.5",
|
||||
"vuex": "4.1.0",
|
||||
"webpack": "5.88.2",
|
||||
"webpack": "5.89.0",
|
||||
"what-input": "5.2.12"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
|
||||
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
|
||||
<env name="MAIL_MAILER" value="array"/>
|
||||
<env name="PULSE_ENABLED" value="false"/>
|
||||
<env name="QUEUE_CONNECTION" value="sync"/>
|
||||
<env name="SESSION_DRIVER" value="array"/>
|
||||
<env name="TELESCOPE_ENABLED" value="false"/>
|
||||
|
|
|
@ -21,7 +21,7 @@ A Hypothetical website template for bootstrapping new projects.
|
|||
* Gsap
|
||||
* Gulp
|
||||
* Jquery
|
||||
* Laravel 10.2.5
|
||||
* Laravel 10.3.2
|
||||
* Sass
|
||||
* Vue 3 (Optional)
|
||||
|
||||
|
|
|
@ -5,26 +5,26 @@
|
|||
"dev": "gulp default watch"
|
||||
},
|
||||
"devDependencies": {
|
||||
"browser-sync": "2.29.3"
|
||||
"browser-sync": "3.0.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/core": "7.23.0",
|
||||
"@babel/preset-env": "7.22.20",
|
||||
"@fortawesome/fontawesome-free": "6.4.2",
|
||||
"@babel/core": "7.23.7",
|
||||
"@babel/preset-env": "7.23.8",
|
||||
"@fortawesome/fontawesome-free": "6.5.1",
|
||||
"@mr-hope/gulp-sass": "3.1.1",
|
||||
"autonumeric": "4.10.0",
|
||||
"autonumeric": "4.10.2",
|
||||
"autoprefixer": "10.4.16",
|
||||
"bootstrap": "5.3.2",
|
||||
"easymde": "2.18.0",
|
||||
"fancy-log": "2.0.0",
|
||||
"flatpickr": "4.6.13",
|
||||
"gsap": "3.12.2",
|
||||
"gsap": "3.12.4",
|
||||
"gulp": "4.0.2",
|
||||
"gulp-babel": "8.0.0",
|
||||
"gulp-clean-css": "4.3.0",
|
||||
"gulp-concat": "2.6.1",
|
||||
"gulp-plumber": "1.2.1",
|
||||
"gulp-postcss": "9.0.1",
|
||||
"gulp-postcss": "9.1.0",
|
||||
"gulp-sass-glob": "1.1.0",
|
||||
"gulp-strip-debug": "4.0.0",
|
||||
"gulp-uglify-es": "3.0.0",
|
||||
|
@ -32,9 +32,9 @@
|
|||
"list.js": "2.3.1",
|
||||
"minimist": "1.2.8",
|
||||
"popper.js": "1.16.1",
|
||||
"postcss": "8.4.31",
|
||||
"sass": "1.69.0",
|
||||
"sortablejs": "1.15.0",
|
||||
"postcss": "8.4.33",
|
||||
"sass": "1.69.7",
|
||||
"sortablejs": "1.15.1",
|
||||
"spinkit": "2.0.1",
|
||||
"what-input": "5.2.12"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue