-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.24 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
53
{
"name": "biurad/maker",
"description": "The Scaffold Maker is the fastest way to generate the most common code you'll need in a PHP projects",
"keywords": ["scaffolding", "scaffolder", "php code generator", "php generator", "biurad", "php"],
"homepage": "https://biurad.com",
"license": "BSD-3-Clause",
"type": "library",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "GitHub Contributors",
"homepage": "https://github.com/biurad/php-maker/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/poakium/maker"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"require": {
"php": "^8.0",
"symfony/console": "^6.0",
"doctrine/inflector": "^1.3",
"nette/php-generator": "^3.3",
"nikic/php-parser": "^4.15"
},
"require-dev": {
"nette/neon": "^3.0",
"symfony/yaml": "^5.4 || ^6.0"
},
"replace": {
"symfony/polyfill-php80": "*"
},
"autoload": {
"psr-4": {
"Biurad\\Maker\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}