hawkca / components
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 19
Type:craft-module
- dev-master
- dev-dependabot/npm_and_yarn/json5-1.0.2
- dev-dependabot/npm_and_yarn/express-4.18.2
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/eventsource-1.1.1
- dev-dependabot/npm_and_yarn/url-parse-1.5.10
- dev-dependabot/npm_and_yarn/follow-redirects-1.14.8
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/tar-4.4.19
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/ws-6.2.2
- dev-dependabot/npm_and_yarn/dns-packet-1.3.4
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.8
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/websocket-extensions-0.1.4
- dev-dependabot/npm_and_yarn/acorn-6.4.1
This package is auto-updated.
Last update: 2025-04-05 03:06:37 UTC
README
A plugin that controls the components.
Requirements
This module requires Craft CMS 3.0.0-RC1 or later.
Installation
To install the module, follow these instructions.
First, you'll need to add the contents of the app.php
file to your config/app.php
(or just copy it there if it does not exist). This ensures that your module will get loaded for each request. The file might look something like this:
return [
'modules' => [
'hawk-components-module' => [
'class' => \modules\hawkcomponentsmodule\HawkComponentsModule::class,
'components' => [
'import' => [
'class' => 'modules\hawkcomponentsmodule\services\Import',
],
],
],
],
'bootstrap' => ['hawk-components-module'],
];
You'll also need to make sure that you add the following to your project's composer.json
file so that Composer can find your module:
"autoload": {
"psr-4": {
"modules\\hawkcomponentsmodule\\": "modules/hawkcomponentsmodule/src/"
}
},
After you have added this, you will need to do:
composer dump-autoload
…from the project’s root directory, to rebuild the Composer autoload map. This will happen automatically any time you do a composer install
or composer update
as well.
Hawk Components Overview
-Insert text here-
Using Hawk Components
-Insert text here-
Hawk Components Roadmap
Some things to do, and ideas for potential features:
- Release it
Brought to you by HAWK