monkeypod / blueprint-module
This package is abandoned and no longer maintained.
No replacement package was suggested.
There is no license information available for the latest version (v2.6.0) of this package.
Budgeting support for the MonkeyPod non-profit accounting and business management platform
Package info
github.com/monkeypod-io/blueprint
Type:laravel-module
pkg:composer/monkeypod/blueprint-module
v2.6.0
2020-09-02 00:41 UTC
Requires
- adamthehutt/laravel-sanitized-requests: ^0.3
- doctrine/dbal: ^2.9
- monkeypod/core-module: ^2.52
- v2.x-dev
- v2.6.0
- v2.5.0
- v2.4.2
- v2.4.1
- v2.4.0
- v2.3.0
- v2.2.0
- v2.1.0
- v2.0.0-beta
- v2.0.0-alpha.3
- v2.0.0-alpha.2
- v2.0.0-alpha
- v1.x-dev
- v1.2.0-beta.1
- v1.1.0-beta.1
- v1.0.6
- v1.0.5
- v1.0.4-beta.1
- v1.0.3-beta.4
- v1.0.2-beta.3
- v1.0.1-beta.2
- v1.0.0-beta.1
- v0.7.0
- v0.6.4
- v0.6.3
- v0.6.2
- v0.6.1
- v0.6.0
- v0.5.2
- v0.5.1
- v0.5.0
- v0.4.2
- v0.4.1
- v0.4.0
- v0.3.4
- v0.3.3
- v0.3.2
- v0.3.1
- v0.3.0
- v0.2.1
- v0.2-alpha.2
- v0.1-alpha.1
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/elliptic-6.5.3
- dev-dependabot/npm_and_yarn/lodash-4.17.19
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/jquery-3.5.0
- dev-master
This package is auto-updated.
Last update: 2020-09-23 18:20:46 UTC
README
As always, if you don't have serious programming and systems administation experience, it is recommended to use the plug-n-play, hosted version of MonkeyPod instead.
MonkeyPod Blueprint Module
This module provides budgeting functionality for MonkeyPod open-source, non-profit accounting and business management software.
Installation
- Include the module:
composer require monkeypod/blueprint-module
- Publish the config:
php artisan module:publish-config Blueprint
- Compile assets:
npm install
npm run [dev|prod]
- Seed the database:
php artisan module:seed Blueprint
- Add the navigation to your main
config/monkeypod-navigation.phpfile:
return [ Menus\Organization::class, Menus\Transactions::class, Menus\Reports::class, MonkeyPod\Blueprint\Http\Navigation\Menus\Budgets::class, // <-- HERE, PERHAPS? ];