{"id":17093979,"url":"https://github.com/jinyphp/auth","last_synced_at":"2026-04-20T03:02:44.535Z","repository":{"id":57748584,"uuid":"442194804","full_name":"jinyphp/auth","owner":"jinyphp","description":"last","archived":false,"fork":false,"pushed_at":"2026-01-02T16:12:59.000Z","size":2046,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-09T00:53:09.712Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jinyphp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2021-12-27T15:19:21.000Z","updated_at":"2026-01-02T16:13:03.000Z","dependencies_parsed_at":"2025-10-27T08:13:50.908Z","dependency_job_id":"342a8302-2e2b-4ec2-8bb1-fb5286130f4f","html_url":"https://github.com/jinyphp/auth","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"e462e3b1be0f8b158bc58cef656256cbbad2ae85"},"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"purl":"pkg:github/jinyphp/auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinyphp%2Fauth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinyphp%2Fauth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinyphp%2Fauth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinyphp%2Fauth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jinyphp","download_url":"https://codeload.github.com/jinyphp/auth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jinyphp%2Fauth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32031070,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T14:09:52.993Z","updated_at":"2026-04-20T03:02:44.495Z","avatar_url":"https://github.com/jinyphp.png","language":"Blade","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jinyPHP Auth\n라라벨 기반의 인증을 확장한 모듈입니다. 기본 인증 뿐만 아니라, 회원을 관리할 수 있는 Admin 기능을 가지고 있습니다.\n\n## 설치\n기본 라라벨 회원 테이블을 확장하여 보다 향상된 회원인증을 처리할 수 있습니다.\n\n```bash\ncomposer require jiny/auth\n```\n\u003e 의존성 : `jiny/auth-users`,`jiny/auth-profile`,`jiny/auth-social` \n\n\n## 설정\n환경설정을 패키지에서 복사하여 설치를 합니다. 다음과 같이 콘솔창에서 입력하세요.\n\n```\nphp artisan vendor:publish --provider=\"Jiny\\Auth\\JinyAuthServiceProvider\"\n```\n\n`/config/jiny/auth.php` 파일이 생성됩니다. 설정값에서 화면과 url등의 설정값을 정의합니다.\n\n```php\n\u003c?php\nreturn [\n    'urls'=\u003e[\n        'home' =\u003e \"/\", // 로그인호 홈으로 이동\n        'logout_back' =\u003e \"/\" // 로그아웃후 이동되는 경로\n    ],\n    'views'=\u003e[\n        'login'=\u003e \"jiny-auth::login\",\n        'regist'=\u003e\"jiny-auth::register\"\n    ]\n];\n```\n\n### actions rules 배포\n\n```\nphp artisan vendor:publish --tag=auth-actions --force\n```\n\n## 커멘드\nartisan 명령을 이용하여 콘솔창에서도 회원을 등록, 관리자 기능을 활성화 시킬 수 있습니다.\n\n새로운 사용자 등록\n```\n$ php artisan user:create --name=이름 --email=이메일 --password=패스워드\n```\n\n관리자 활성화\n```\nphp artisan user:admin 이메일 --enable\n```\n\n슈퍼 관리자 활성화\n```\nphp artisan user:super 이메일 --enable\n```\n\n## 설치\n```\ncomposer require jiny/auth\n```\n\n## 라우팅\n\n* /admin/auth/users : 회원목록\n* 역할 : /admin/auth/roles\n* reserved : /admin/auth/reserved\n* Agree : /admin/auth/agree\n* teams : /admin/auth/teams\n* setting : /admin/auth/setting\n\n\n\nphp artisan vendor:publish --tag=laravel-mail\n\n## 확장모듈 소개\n지니Auth를 기반으로 다양한 회원정보를 유지관리 할 수 있는 추가 모듈을 제공합니다.\n\u003e 일부 모듈은 유료로 제공됩니다.\n\n* module-accounts\n회원의 상세(성-중간-이름) 이름정보를 관리하고, 아바타 이미지, 멀티 주소록, 멀티 연락처등 관리 가능합니다.\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinyphp%2Fauth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjinyphp%2Fauth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjinyphp%2Fauth/lists"}