-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.72 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "atournayre/maker-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "This bundle extend Symfony Maker Bundle and helps you create lots of files so you can forget about writing boilerplate code and it also provide minimal files to start a project.",
"keywords": ["generator", "code generator", "scaffolding", "scaffold", "dev", "commands", "controllers", "collections", "DTO", "VO", "events", "interfaces", "logger", "services", "traits"],
"minimum-stability": "stable",
"require": {
"php": ">=8.1",
"atournayre/collection": "^0.8.0",
"atournayre/types": "^0.9.0",
"nette/php-generator": "^4.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/maker-bundle": "^1.56",
"symfony/mime": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"webmozart/assert": "^1.11"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Atournayre\\Bundle\\MakerBundle\\": "src/",
"App\\": "src/Resources/templates"
}
},
"autoload-dev": {
"psr-4": {
"Atournayre\\Bundle\\MakerBundle\\Tests\\": "tests/"
}
},
"require-dev": {
"phpstan/phpdoc-parser": "^1.29",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-symfony": "^1.3",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.0",
"spaze/phpstan-disallowed-calls": "^3.3"
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse src",
"rector": "rector process src",
"qa": [
"@phpstan",
"@rector",
"@test"
]
}
}