Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 24, 2024 via composer

symfony/maker-bundle v1.37.0

Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.
Package summary
Share
0
issues
2
licenses
32
MIT
1
BSD-3-Clause
Package created
17 Nov 2017
Version published
16 Feb 2022
Maintainers
1
Total deps
33
Direct deps
12
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
32 Packages, Including:
doctrine/inflector@2.0.10
psr/cache@3.0.0
psr/container@2.0.2
psr/event-dispatcher@1.0.0
psr/log@3.0.0
symfony/cache@v7.0.7
symfony/cache-contracts@v3.5.0
symfony/config@v6.4.7
symfony/console@v6.4.7
symfony/dependency-injection@v6.4.7
symfony/deprecation-contracts@v3.5.0
symfony/error-handler@v7.0.7
symfony/event-dispatcher@v7.0.7
symfony/event-dispatcher-contracts@v3.5.0
symfony/filesystem@v6.4.7
symfony/finder@v6.4.7
symfony/framework-bundle@v6.4.7
symfony/http-foundation@v7.0.7
symfony/http-kernel@v6.4.7
symfony/maker-bundle@v1.37.0
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-intl-grapheme@v1.29.0
symfony/polyfill-intl-normalizer@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php80@v1.29.0
symfony/polyfill-php83@v1.29.0
symfony/process@v6.4.7
symfony/routing@v7.0.7
symfony/service-contracts@v3.5.0
symfony/string@v7.0.7
symfony/var-dumper@v7.0.7
symfony/var-exporter@v7.0.7

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
nikic/php-parser@v4.19.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

12
All Dependencies CSV
β“˜ This is a list of symfony/maker-bundle 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
doctrine/inflector2.0.10-MIT
prod
nikic/php-parserv4.19.1-BSD-3-Clause
prod
symfony/configv6.4.7-MIT
prod dev
symfony/consolev6.4.7-MIT
prod dev
symfony/dependency-injectionv6.4.7-MIT
prod dev
symfony/deprecation-contractsv3.5.0-MIT
prod dev
symfony/filesystemv6.4.7-MIT
prod dev
symfony/finderv6.4.7-MIT
prod dev
symfony/framework-bundlev6.4.7-MIT
prod
symfony/http-kernelv6.4.7-MIT
prod dev
symfony/polyfill-php80v1.29.0-MIT
prod dev
symfony/processv6.4.7-MIT
prod dev

Visualizations

Frequently Asked Questions

What does symfony/maker-bundle do?

Symfony Maker Bundle is a tool designed to speed up the development process in Symfony projects by automating the generation of common boilerplate code. This package aids in creating a multitude of elements such as controllers, commands, form classes, event subscribers, and even tests, thus reducing the time spent on coding these manually. An alternative to SensioGeneratorBundle, it targets modern Symfony applications and requires Symfony 3.4 or newer and Symfony Flex for optimal performance.

How do you use symfony/maker-bundle?

To utilize Symfony Maker Bundle, start by installing it into your Symfony project. This can be achieved via Composer, the PHP dependency manager, with the command composer require maker --dev. After successfully installing the package, you can run php bin/console make:command your-command-name to create a command, php bin/console make:controller YourController to create a controller, and so forth for other elements. The pattern is simple: use the make: prefix followed by the element you want to create and the name you want to give it. Keep in mind that the input arguments and generated code may change between minor release versions.

Where are the symfony/maker-bundle docs?

For comprehensive information, refer to the official Symfony Maker Bundle documentation provided on the Symfony website at Symfony Maker Bundle Documentation. Here you can find detailed usage examples, additional commands, guidelines on extending Maker commands, and an explanation of how to handle potential backwards compatibility issues between release versions.