xguard / laravel-kanban
用于 Laravel 应用的看板
v1.25.2
2023-08-11 01:29 UTC
- dev-master
- v1.25.2
- v1.25
- v1.24
- v1.23.2
- v1.23.1
- v1.23
- v1.22.2
- v1.22.1
- v1.22
- v1.21.1
- v1.21
- 1.20.9
- 1.20.8
- v1.20.7
- v1.20.6
- v1.20.5
- v1.20.4
- 1.20.3
- v1.20.2
- v1.20.1
- v1.20
- v1.19
- v1.18
- v1.17
- v1.16.3
- 1.16.2
- v1.16.1
- v1.16
- v1.15
- v1.14
- v1.13
- v1.12.3
- v1.12.2
- v1.12.1
- v1.12
- v1.11.2
- v1.11.1
- v1.11
- v1.10.2
- v1.10.1
- v1.10
- v1.9.1
- v1.9
- v1.8.2
- v1.8.1
- v1.8
- v1.7
- v1.6
- v1.5
- v1.4.4
- v1.4.3
- v1.4.2
- v1.4.1
- v1.4
- v1.3
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2
- v1.1.2
- v1.1.1
- v1.1
- v1.0
- v0.9
- v0.8
- v0.6
- v0.5
- v0.4.2
- v0.4.1
- v0.4
- v0.3
- v0.2
- v0.1.1
- v0.1
- dev-feature/optimize-backlog-search
- dev-fix/backlog-related-task-links
- dev-fix/self-notifying-fix
- dev-feature/create-task-generate-link
- dev-fix/sentry-issues
- dev-fix/broken-comments
- dev-fix/dragging-when-selected
- dev-feature/save-sort-method-locally
- dev-feature/sort-kanban
- dev-fix/delete-user
- dev-fix/duplication-when-updating-task
- dev-feature/avatar-fix
- dev-fix/card-duplication-and-metrics-fix
- dev-fix/files-and-reactivity
- dev-fix/deleted-stuff-bugs
- dev-feature/logs-pagination
- dev-feature/avatar-refactor
- dev-feature/return-to-backlog
- dev-feature/taskpane-upgrade
- dev-feature/sanitize-and-refactoring
- dev-feature/bug-fixes
- dev-feature/ci
- dev-fix/deleted-log-data-notification
- dev-feature/live-notifs
- dev-fix/general-fixes
- dev-feature/live-updates-salvage
- dev-feature/live-updates
- dev-fix/xguard-3450
- dev-feature/refactor-controller-2
- dev-fix/all-missing-user-relation-bug-fixes
- dev-feature/refactor-controller-into-actions
- dev-fix/use_https
- dev-feature/file-upload-with-frontend
- dev-feature/file_upload
- dev-fix/timestamps
- dev-tests/actions
- dev-feature/metrics-action-refactor
- dev-hotfix/remove-board-auth
- dev-feature/pr-template
- dev-feature/update-import
- dev-feature/estimated-hours-completed-metric
- dev-feature/refactor-controllers
- dev-feature/task-estimates
- dev-hotfix/bug-fixes-for-release-1.8
- dev-feature/pretty-metrics
- dev-feature/task-unit-tests
- dev-feature/parallel-testing
- dev-feature/set-notif-settings
- dev-feature/right-click
- dev-fix/set-status-backlog
- dev-feature/edit-delete-comments
- dev-feature/remap-version
- dev-feature/log-card-refactor
- dev-feature/notification-settings
- dev-feature/task-controller-refactor
- dev-fix/backlog-completed
- dev-feature/metrics-employee-2
- dev-feature/remove-warning-from-checklist
- dev-feature/frontend-features
- dev-feature/kanban-slack-notifications
- dev-feature/sort-by-erp-employees-contracts
- dev-feature/mentions
- dev-feature/badge-editor
- dev-fix/badge-creation-admin
- dev-feature/badge-create-only-admin
- dev-feature/logs-refactor-backup
- dev-feature/logs-refactor
- dev-feature/logs-refactor-siamak
- dev-feature/copy-to-clipboard
- dev-feature/member-tests
- dev-hotfix/reporter-fixes
- dev-feature/optimize-backlog
- dev-feature/user-profile-backup
- dev-feature/user-profile
- dev-feature/move-erp-data-to-shareables-command
- dev-feature/mobile-friendly
- dev-feature/allowManyErpDataInTask
- dev-feature/contracts
- dev-feature/template-refactor
- dev-feature/notifications
- dev-feature/shared-task-data
- dev-feature/roles
- dev-fix/completed-canceled
- dev-feature/ask-to-delete
- dev-feature/set-status
- dev-feature/remove-phone-icon
- dev-feature/hide-checklist-bar
- dev-feature/related-tasks
- dev-feature/add-task-by-column
- dev-feature/fix-edit-task
- dev-feature/backlog-move
- dev-feature/tasks
- dev-fix/metrics
- dev-backlog
- dev-dynamic-search
- dev-kanban-refactor
This package is auto-updated.
Last update: 2024-09-11 03:46:10 UTC
README
Laravel 项目看板包
安装
使用以下命令进行安装
composer require xguard/laravel-kanban
php artisan migrate
php artisan vendor:publish --provider="Xguard\LaravelKanban\LaravelKanbanServiceProvider" --force
使用以下命令创建管理员。它将提示您从用户表中输入现有的电子邮件。
php artisan kanban:create-admin
您现在可以访问 /kanban 路径来使用此包。您必须先登录才能访问此 URL。
开发
按照以下步骤对包进行修改
1: 首先,下载并将 laravel-kanban 文件夹拖到您的根目录下的包文件夹中。如果您还没有,请创建一个 "package" 文件夹。
2: 然后,在您的根 composer.json 的 psr-4 中添加一行代码
"psr-4": {
//...
"Xguard\\LaravelKanban\\": "package/laravel-kanban/src/"
},
3: 将 Kanban 服务提供者添加到 config/app.php
return [ //... "providers" => [ //... Xguard\LaravelKanban\LaravelKanbanServiceProvider::class, ] ];
4: 运行以下命令
composer dump-autoload
5: 在命令行中导航到 laravel-kanban 包文件夹并执行以下命令
composer install npm install npm run dev
6: 返回命令行中的根目录,并使用以下命令发布包
php artisan vendor:publish --provider="Xguard\LaravelKanban\LaravelKanbanServiceProvider" --force
7: 运行包迁移
php artisan migrate --path=package/laravel-kanban/src/database/migrations
8: 运行测试的种子文件
php artisan db:seed --class="Xguard\LaravelKanban\database\seeds\EmployeeSeeder"
许可协议
让我们来制作开源版本?受 MIT 许可协议约束MIT 许可协议