### Configure DevelNext Bundle in package.php.yml Source: https://github.com/jphp-group/dn-bundle-plugin/blob/master/README.md This YAML configuration snippet demonstrates how to declare the `dn-bundle-plugin` as a development dependency and define essential metadata for a DevelNext bundle. This includes specifying the bundle's version, name, author, icon path, description, group, and the main class responsible for its functionality. This setup is crucial for jppm to correctly process and build the bundle. ```yaml devDeps: dn-bundle-plugin: '*' ... develnext-bundle: version: 1.0.0 name: simple-bundle author: broelik icon: "develnext/bundle/simplebundle/icon32.png" description: "Simple Bundle" group: "other" class: "develnext\\bundle\\simplebundle\\SimpleBundle" ``` -------------------------------- ### Build DevelNext Bundle with jppm Source: https://github.com/jphp-group/dn-bundle-plugin/blob/master/README.md This command is used to compile and package the DevelNext bundle. After configuring `package.php.yml` and placing source files in the `src-bundle` directory, executing this command will generate the `.dnbundle` file, typically found in `PROJECT_DIRECTORY/bundle/PROJECT_NAME-PROJECT_VERSION.dnbundle`. ```shell jppm bundle:build ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.