-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 850 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
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
{
"name": "natitech/builder-generator",
"description": "PHP standalone library to generate a builder (pattern) from a class",
"type": "library",
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"nette/php-generator": "^3.2",
"nikic/php-parser": "^4.2",
"phpstan/phpdoc-parser": "^1.0",
"symfony/console": "^6.1",
"psr/log": "^1.0 || ^2.0 || ^3.0"
},
"require-dev": {
"fakerphp/faker": "^1.8",
"phpunit/phpunit": "^9.0"
},
"suggest": {
"fakerphp/faker": "To initialize properties with more relevant random data",
"monolog/monolog": "To display or log more infos on what is done"
},
"autoload": {
"psr-4": {
"Nati\\BuilderGenerator\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nati\\BuilderGenerator\\Test\\": "test"
}
},
"bin": ["generate-builder"]
}