Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Account Creation #13

Draft
wants to merge 27 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
1fc96db
feat(account): separating out the routes
awjudd Nov 9, 2021
5b601d0
feat(account): login page
awjudd Nov 10, 2021
248d21e
feat(account): login
awjudd Nov 16, 2021
4c34894
Cached Configuration (#14)
awjudd Nov 18, 2021
8b0134a
feat(account): account creation
awjudd Nov 19, 2021
4040bea
feat(account): account creation
awjudd Nov 19, 2021
6a9a50e
feat(account): account creation
awjudd Nov 20, 2021
8173789
feat(account): register page
awjudd Nov 20, 2021
da87f3d
feat(account): login error messages
awjudd Nov 21, 2021
e0f1c28
feat(forgot): forgot your password
awjudd Nov 21, 2021
2b5f003
feat(layout): splitting the layout
awjudd Nov 24, 2021
de32aa6
feat(account): home page
awjudd Nov 29, 2021
8e32041
feat(account): account creation
awjudd Dec 2, 2021
c6a0ca9
chore(vue): upgrading to vue 3
awjudd Dec 5, 2021
be57545
feat(account): separating out the routes
awjudd Nov 9, 2021
70517fc
feat(account): login page
awjudd Nov 10, 2021
3f46c51
feat(account): login
awjudd Nov 16, 2021
234a5f5
feat(account): account creation
awjudd Nov 19, 2021
6c6c94e
feat(account): account creation
awjudd Nov 19, 2021
afd4316
feat(account): account creation
awjudd Nov 20, 2021
c6adbda
feat(account): register page
awjudd Nov 20, 2021
49c54e2
feat(account): login error messages
awjudd Nov 21, 2021
3cf19bf
feat(forgot): forgot your password
awjudd Nov 21, 2021
bb7f12b
feat(layout): splitting the layout
awjudd Nov 24, 2021
cda08b3
feat(account): home page
awjudd Nov 29, 2021
49d762c
feat(account): account creation
awjudd Dec 2, 2021
7f4e288
Merge branch 'feat/account-creation' of github.com:gaming-engine/core…
awjudd Dec 6, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'plugin:vue/essential',
'airbnb-base',
],
parserOptions: {
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'vue',
'prettier',
],
rules: {
'import/no-unresolved': 'off',
'max-len': [
'error',
{
code: 100,
ignorePattern: 'd="([\\s\\S]*?)"',
},
],

'vue/max-len': [
'error',
{
template: 100,
ignorePattern: 'd="([\\s\\S]*?)"',
},
],

yoda: [2, 'always'],
},
overrides: [
{
files: [
'**/*.spec.js',
'**/*.spec.jsx',
],
env: {
jest: true,
},
},
],
};
2 changes: 2 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

export PHP_CS_FIXER_IGNORE_ENV=1

npx lint-staged
git add -A .
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

./vendor/bin/phpunit --coverage-html ./build
XDEBUG_MODE=coverage ./vendor/bin/phpunit --coverage-html ./build
php coverage-checker.php ./build/clover.xml 95
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"semi": false,
"singleQuote": true
}
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@
"gaming-engine/dictionary": "1.*",
"gaming-engine/string-tools": "1.*",
"illuminate/contracts": "^8.37",
"laravel/fortify": "^1.8",
"spatie/data-transfer-object": "^3.7",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"friendsofphp/php-cs-fixer": "^3.0",
"friendsofphp/php-cs-fixer": "3.*",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
Expand Down Expand Up @@ -67,7 +68,8 @@
"GamingEngine\\Core\\Framework\\Providers\\EventServiceProvider",
"GamingEngine\\Core\\Framework\\Providers\\RouteServiceProvider",
"GamingEngine\\Core\\Configuration\\Providers\\ConfigurationServiceProvider",
"GamingEngine\\Core\\Account\\Providers\\UserServiceProvider"
"GamingEngine\\Core\\Account\\Providers\\UserServiceProvider",
"GamingEngine\\Core\\Account\\Providers\\RouteServiceProvider"
],
"aliases": {
"Core": "GamingEngine\\Core\\CoreFacade"
Expand Down
580 changes: 578 additions & 2 deletions core.babel

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module.exports = {
'resources/**/*.{css}': ['prettier --write'],
'resources/**/*.{js}': ['eslint --no-ignore --color', 'prettier --write'],
'**/*.php': [
'php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes'
]
'resources/**/*.{css}': ['prettier --write'],
'resources/**/*.{js}': ['eslint --no-ignore --color', 'prettier --write'],
'**/*.php': [
'php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.php --allow-risky=yes',
],
};
Loading