forked from laravel/laravel
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: auth's user import and fix user password casting and test(#27) a…
…nd add UserRegistered notification for new users
- Loading branch information
1 parent
9775065
commit 0caf9a5
Showing
19 changed files
with
1,664 additions
and
1,475 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for all configuration options: | ||
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "npm" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
|
||
- package-ecosystem: "composer" # See documentation for possible values | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" | ||
|
||
- package-ecosystem: "github-actions" | ||
# Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v20.10.0 | ||
v20.13.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,93 @@ | ||
{ | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The skeleton application for the Laravel framework.", | ||
"keywords": ["laravel", "framework"], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^8.2", | ||
"laravel/framework": "^11.9", | ||
"laravel/tinker": "^2.9" | ||
}, | ||
"require-dev": { | ||
"fakerphp/faker": "^1.23", | ||
"laravel/pint": "^1.13", | ||
"laravel/sail": "^1.26", | ||
"mockery/mockery": "^1.6", | ||
"nunomaduro/collision": "^8.1", | ||
"phpunit/phpunit": "^11.0.1" | ||
}, | ||
"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", | ||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", | ||
"@php artisan migrate --graceful --ansi" | ||
] | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true, | ||
"php-http/discovery": true | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
"name": "laravel/laravel", | ||
"type": "project", | ||
"description": "The skeleton application for the Laravel framework.", | ||
"keywords": [ | ||
"laravel", | ||
"framework" | ||
], | ||
"license": "MIT", | ||
"require": { | ||
"php": "^8.2", | ||
"flugger/laravel-responder": "^3.4", | ||
"guzzlehttp/guzzle": "^7.2", | ||
"laravel/framework": "^11.0", | ||
"laravel/sanctum": "^4.0", | ||
"laravel/tinker": "^2.8", | ||
"sentry/sentry-laravel": "^4.4", | ||
"spatie/laravel-query-builder": "^6.0" | ||
}, | ||
"require-dev": { | ||
"barryvdh/laravel-ide-helper": "^3.0", | ||
"brianium/paratest": "^7.4", | ||
"captainhook/plugin-composer": "^5.3", | ||
"fakerphp/faker": "^1.23", | ||
"laravel/pint": "^1.13", | ||
"laravel/sail": "^1.26", | ||
"mockery/mockery": "^1.6", | ||
"nunomaduro/collision": "^8.1", | ||
"pestphp/pest": "^2.34", | ||
"pestphp/pest-plugin-laravel": "^2.3", | ||
"phpunit/phpunit": "^10.5.16", | ||
"spatie/laravel-ignition": "^2.4", | ||
"webgriffe/captainhook": "^2.1", | ||
"sojeda/conventional-commits": "^1.5", | ||
"worksome/coding-style": "^2.6", | ||
"worksome/request-factories": "^3.3" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Database\\Factories\\": "database/factories/", | ||
"Database\\Seeders\\": "database/seeders/", | ||
"Lightit\\": "src/" | ||
} | ||
}, | ||
"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", | ||
"@php -r \"file_exists('database/database.sqlite') || touch('database/database.sqlite');\"", | ||
"@php artisan migrate --graceful --ansi" | ||
], | ||
"test": "vendor/bin/pest --coverage-html --parallel --profile reports/", | ||
"ecs": "vendor/bin/ecs", | ||
"ecs:fix": "vendor/bin/ecs --fix", | ||
"phpstan": "vendor/bin/phpstan analyse --memory-limit=4G", | ||
"rector": "vendor/bin/rector process --dry-run --ansi", | ||
"rector:fix": "vendor/bin/rector process --ansi", | ||
"fixer": "composer ecs:fix && composer phpstan && composer rector:fix" | ||
}, | ||
"extra": { | ||
"laravel": { | ||
"dont-discover": [] | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true, | ||
"preferred-install": "dist", | ||
"sort-packages": true, | ||
"allow-plugins": { | ||
"pestphp/pest-plugin": true, | ||
"php-http/discovery": true, | ||
"dealerdirect/phpcodesniffer-composer-installer": true, | ||
"worksome/coding-style": true, | ||
"captainhook/plugin-composer": true | ||
} | ||
}, | ||
"minimum-stability": "stable", | ||
"prefer-stable": true | ||
} |
Oops, something went wrong.