Squashed 'Modules/User/' content from commit 75dc3fb
git-subtree-dir: Modules/User git-subtree-split: 75dc3fb74bf277d756c58c7ed0f5e5fd22c62ed9
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.scrutinizer.yml
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Contracts/Authentication.php
0 → 100644
Emails/WelcomeEmail.php
0 → 100644
Entities/Sentinel/User.php
0 → 100644
Entities/UserInterface.php
0 → 100644
Entities/UserToken.php
0 → 100644
Events/RoleWasUpdated.php
0 → 100644
Events/UserHasRegistered.php
0 → 100644
Events/UserWasUpdated.php
0 → 100644
Http/Middleware/TokenCan.php
0 → 100644
Http/backendRoutes.php
0 → 100644
Http/frontendRoutes.php
0 → 100644
LICENSE.md
0 → 100644
Presenters/UserPresenter.php
0 → 100644
Services/UserResetter.php
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "asgardcms/user-module", | ||
"type": "asgard-module", | ||
"description": "User module for AsgardCMS. Handles the authentication and authorisation as well as the user management.", | ||
"keywords": [ | ||
"asgardcms", | ||
"user", | ||
"authentication", | ||
"authorisation" | ||
], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Nicolas Widart", | ||
"email": "info@asgardcms.com", | ||
"role": "Developer" | ||
} | ||
], | ||
"support": { | ||
"email": "support@asgardcms.com", | ||
"issues": "https://github.com/AsgardCms/Platform/issues", | ||
"source": "https://github.com/AsgardCms/User" | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"composer/installers": "~1.0", | ||
"asgardcms/core-module": "~2.0", | ||
"ramsey/uuid": "^3.4" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "~4.0", | ||
"orchestra/testbench": "3.3.*", | ||
"scrutinizer/ocular": "~1.1", | ||
"fzaninotto/faker": "~1.5", | ||
"mockery/mockery": "^0.9.4", | ||
"phpro/grumphp": "^0.9.1", | ||
"friendsofphp/php-cs-fixer": "^1.11" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Modules\\User\\": ".", | ||
"Modules\\": "Modules/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Modules\\User\\Tests\\": "Tests" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-2.0": "2.0.x-dev" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
composers.php
0 → 100644
grumphp.yml
0 → 100644
helpers.php
0 → 100644
module.json
0 → 100644
phpunit.xml
0 → 100644
readme.md
0 → 100644
Please register or sign in to comment