Compare commits

..

No commits in common. "bfb99237da73a4514d0da8938d5f4c250ff750d5" and "e4a4dbbedbb1e17fdd7af2aa62cd908f5a39c0f8" have entirely different histories.

14 changed files with 1838 additions and 1750 deletions

View file

@ -1 +1 @@
1a4d1dc81f7924259885250d011ffad24728cd86 f419821bd8cbc736ac6f9b2fce75a4e373a4b49f

View file

@ -12,7 +12,7 @@
"intervention/image": "^2.7.2", "intervention/image": "^2.7.2",
"laravel/framework": "^10.10", "laravel/framework": "^10.10",
"laravel/helpers": "^1.6", "laravel/helpers": "^1.6",
"laravel/sanctum": "^3.3", "laravel/sanctum": "^3.2",
"laravel/tinker": "^2.8", "laravel/tinker": "^2.8",
"laravel/ui": "^4.2.1", "laravel/ui": "^4.2.1",
"phpoffice/phpspreadsheet": "^1.28.0", "phpoffice/phpspreadsheet": "^1.28.0",

1207
composer.lock generated

File diff suppressed because it is too large Load diff

View file

@ -141,7 +141,7 @@ return [
'maintenance' => [ 'maintenance' => [
'driver' => 'file', 'driver' => 'file',
// 'store' => 'redis', // 'store' => 'redis',
], ],
/* /*

View file

@ -29,8 +29,7 @@ return [
*/ */
'bcrypt' => [ 'bcrypt' => [
'rounds' => env('BCRYPT_ROUNDS', 12), 'rounds' => env('BCRYPT_ROUNDS', 10),
'verify' => true,
], ],
/* /*
@ -48,7 +47,6 @@ return [
'memory' => 65536, 'memory' => 65536,
'threads' => 1, 'threads' => 1,
'time' => 4, 'time' => 4,
'verify' => true,
], ],
]; ];

View file

@ -29,7 +29,7 @@ return [
| mailers below. You are free to add additional mailers as required. | mailers below. You are free to add additional mailers as required.
| |
| Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2", | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2",
| "postmark", "log", "array", "failover", "roundrobin" | "postmark", "log", "array", "failover"
| |
*/ */
@ -50,16 +50,15 @@ return [
'transport' => 'ses', 'transport' => 'ses',
], ],
'postmark' => [ 'mailgun' => [
'transport' => 'postmark', 'transport' => 'mailgun',
// 'message_stream_id' => null,
// 'client' => [ // 'client' => [
// 'timeout' => 5, // 'timeout' => 5,
// ], // ],
], ],
'mailgun' => [ 'postmark' => [
'transport' => 'mailgun', 'transport' => 'postmark',
// 'client' => [ // 'client' => [
// 'timeout' => 5, // 'timeout' => 5,
// ], // ],
@ -86,14 +85,6 @@ return [
'log', 'log',
], ],
], ],
'roundrobin' => [
'transport' => 'roundrobin',
'mailers' => [
'ses',
'postmark',
],
],
], ],
/* /*

View file

@ -41,28 +41,13 @@ return [
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| This value controls the number of minutes until an issued token will be | This value controls the number of minutes until an issued token will be
| considered expired. This will override any values set in the token's | considered expired. If this value is null, personal access tokens do
| "expires_at" attribute, but first-party sessions are not affected. | not expire. This won't tweak the lifetime of first-party sessions.
| |
*/ */
'expiration' => null, '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 | Sanctum Middleware
@ -75,9 +60,8 @@ return [
*/ */
'middleware' => [ 'middleware' => [
'authenticate_session' => Laravel\Sanctum\Http\Middleware\AuthenticateSession::class,
'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class, 'verify_csrf_token' => App\Http\Middleware\VerifyCsrfToken::class,
'encrypt_cookies' => App\Http\Middleware\EncryptCookies::class,
], ],
]; ];

View file

@ -198,17 +198,4 @@ return [
'same_site' => 'lax', '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,
]; ];

View file

@ -3,7 +3,6 @@
namespace Database\Factories; namespace Database\Factories;
use Illuminate\Database\Eloquent\Factories\Factory; use Illuminate\Database\Eloquent\Factories\Factory;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Str; use Illuminate\Support\Str;
/** /**
@ -11,11 +10,6 @@ use Illuminate\Support\Str;
*/ */
class UserFactory extends Factory class UserFactory extends Factory
{ {
/**
* The current password being used by the factory.
*/
protected static ?string $password;
/** /**
* Define the model's default state. * Define the model's default state.
* *
@ -27,7 +21,7 @@ class UserFactory extends Factory
'name' => fake()->name(), 'name' => fake()->name(),
'email' => fake()->unique()->safeEmail(), 'email' => fake()->unique()->safeEmail(),
'email_verified_at' => now(), 'email_verified_at' => now(),
'password' => static::$password ??= Hash::make('password'), 'password' => '$2y$10$92IXUNpkjO0rOQ5byMi.Ye4oKoEa3Ro9llC/.og/at2.uheWG/igi', // password
'remember_token' => Str::random(10), 'remember_token' => Str::random(10),
]; ];
} }

2256
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -5,28 +5,28 @@
"dev": "gulp default watch" "dev": "gulp default watch"
}, },
"devDependencies": { "devDependencies": {
"browser-sync": "3.0.2" "browser-sync": "2.29.3"
}, },
"dependencies": { "dependencies": {
"@babel/core": "7.23.7", "@babel/core": "7.23.0",
"@babel/preset-env": "7.23.8", "@babel/preset-env": "7.22.20",
"@fortawesome/fontawesome-free": "6.5.1", "@fortawesome/fontawesome-free": "6.4.2",
"@mr-hope/gulp-sass": "3.1.1", "@mr-hope/gulp-sass": "3.1.1",
"autonumeric": "4.10.2", "autonumeric": "4.10.0",
"autoprefixer": "10.4.16", "autoprefixer": "10.4.16",
"axios": "1.6.5", "axios": "1.5.1",
"babel-loader": "9.1.3", "babel-loader": "9.1.3",
"bootstrap": "5.3.2", "bootstrap": "5.3.2",
"easymde": "2.18.0", "easymde": "2.18.0",
"fancy-log": "2.0.0", "fancy-log": "2.0.0",
"flatpickr": "4.6.13", "flatpickr": "4.6.13",
"gsap": "3.12.4", "gsap": "3.12.2",
"gulp": "4.0.2", "gulp": "4.0.2",
"gulp-babel": "8.0.0", "gulp-babel": "8.0.0",
"gulp-clean-css": "4.3.0", "gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1", "gulp-concat": "2.6.1",
"gulp-plumber": "1.2.1", "gulp-plumber": "1.2.1",
"gulp-postcss": "9.1.0", "gulp-postcss": "9.0.1",
"gulp-sass-glob": "1.1.0", "gulp-sass-glob": "1.1.0",
"gulp-strip-debug": "4.0.0", "gulp-strip-debug": "4.0.0",
"gulp-uglify-es": "3.0.0", "gulp-uglify-es": "3.0.0",
@ -34,16 +34,16 @@
"list.js": "2.3.1", "list.js": "2.3.1",
"minimist": "1.2.8", "minimist": "1.2.8",
"popper.js": "1.16.1", "popper.js": "1.16.1",
"postcss": "8.4.33", "postcss": "8.4.31",
"sass": "1.69.7", "sass": "1.69.0",
"sortablejs": "1.15.1", "sortablejs": "1.15.0",
"spinkit": "2.0.1", "spinkit": "2.0.1",
"terser-webpack-plugin": "5.3.10", "terser-webpack-plugin": "5.3.9",
"vue": "3.4.12", "vue": "3.3.4",
"vue-loader": "17.4.2", "vue-loader": "17.2.2",
"vue-router": "4.2.5", "vue-router": "4.2.5",
"vuex": "4.1.0", "vuex": "4.1.0",
"webpack": "5.89.0", "webpack": "5.88.2",
"what-input": "5.2.12" "what-input": "5.2.12"
} }
} }

View file

@ -24,7 +24,6 @@
<!-- <env name="DB_CONNECTION" value="sqlite"/> --> <!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> --> <!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/> <env name="MAIL_MAILER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="QUEUE_CONNECTION" value="sync"/> <env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/> <env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/> <env name="TELESCOPE_ENABLED" value="false"/>

View file

@ -21,7 +21,7 @@ A Hypothetical website template for bootstrapping new projects.
* Gsap * Gsap
* Gulp * Gulp
* Jquery * Jquery
* Laravel 10.3.2 * Laravel 10.2.5
* Sass * Sass
* Vue 3 (Optional) * Vue 3 (Optional)

View file

@ -5,26 +5,26 @@
"dev": "gulp default watch" "dev": "gulp default watch"
}, },
"devDependencies": { "devDependencies": {
"browser-sync": "3.0.2" "browser-sync": "2.29.3"
}, },
"dependencies": { "dependencies": {
"@babel/core": "7.23.7", "@babel/core": "7.23.0",
"@babel/preset-env": "7.23.8", "@babel/preset-env": "7.22.20",
"@fortawesome/fontawesome-free": "6.5.1", "@fortawesome/fontawesome-free": "6.4.2",
"@mr-hope/gulp-sass": "3.1.1", "@mr-hope/gulp-sass": "3.1.1",
"autonumeric": "4.10.2", "autonumeric": "4.10.0",
"autoprefixer": "10.4.16", "autoprefixer": "10.4.16",
"bootstrap": "5.3.2", "bootstrap": "5.3.2",
"easymde": "2.18.0", "easymde": "2.18.0",
"fancy-log": "2.0.0", "fancy-log": "2.0.0",
"flatpickr": "4.6.13", "flatpickr": "4.6.13",
"gsap": "3.12.4", "gsap": "3.12.2",
"gulp": "4.0.2", "gulp": "4.0.2",
"gulp-babel": "8.0.0", "gulp-babel": "8.0.0",
"gulp-clean-css": "4.3.0", "gulp-clean-css": "4.3.0",
"gulp-concat": "2.6.1", "gulp-concat": "2.6.1",
"gulp-plumber": "1.2.1", "gulp-plumber": "1.2.1",
"gulp-postcss": "9.1.0", "gulp-postcss": "9.0.1",
"gulp-sass-glob": "1.1.0", "gulp-sass-glob": "1.1.0",
"gulp-strip-debug": "4.0.0", "gulp-strip-debug": "4.0.0",
"gulp-uglify-es": "3.0.0", "gulp-uglify-es": "3.0.0",
@ -32,9 +32,9 @@
"list.js": "2.3.1", "list.js": "2.3.1",
"minimist": "1.2.8", "minimist": "1.2.8",
"popper.js": "1.16.1", "popper.js": "1.16.1",
"postcss": "8.4.33", "postcss": "8.4.31",
"sass": "1.69.7", "sass": "1.69.0",
"sortablejs": "1.15.1", "sortablejs": "1.15.0",
"spinkit": "2.0.1", "spinkit": "2.0.1",
"what-input": "5.2.12" "what-input": "5.2.12"
} }