-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
76 lines (76 loc) · 2.45 KB
/
Copy pathcomposer.json
File metadata and controls
76 lines (76 loc) · 2.45 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "forme/codegen",
"license": "MIT",
"description": "Code Generation CLI For The Forme WordPress Framework",
"require": {
"php": "^8.3",
"consolidation/comments": "^2.0",
"forme/framework": "^4.0.4",
"jawira/case-converter": "^3.4",
"jolicode/jolinotif": "^3.1",
"league/flysystem": "^3.0",
"nette/php-generator": "^4.0",
"nette/utils": "^4.0",
"nikic/php-parser": "^5.0",
"php-di/php-di": "^7.0",
"phppkg/cli-markdown": "^2.0.1",
"symfony/console": "^6.0|^7.0",
"symfony/process": "^7.0",
"symfony/string": "^7.0",
"symfony/yaml": "^7.0",
"symplify/coding-standard": "^12.2",
"symplify/easy-coding-standard": "^12.1"
},
"autoload": {
"psr-4": {
"Forme\\CodeGen\\": "src/"
},
"files": [
"definitions/bootstrap.php",
"definitions/dependencies.php"
]
},
"require-dev": {
"captainhook/captainhook": "^5.16",
"friendsofphp/php-cs-fixer": "^3.16",
"mockery/mockery": "^1.4",
"nunomaduro/mock-final-classes": "dev-master",
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^2.1",
"psy/psysh": "^0.12.3",
"ramsey/conventional-commits": "^1.3",
"rector/rector": "^2.0",
"spatie/pest-plugin-test-time": "^2.1",
"symfony/var-dumper": "^7.0"
},
"scripts": {
"test": "./tools/pest",
"stan": "./tools/phpstan",
"rector:check": "./tools/rector process src --dry-run",
"rector:fix": "./tools/rector process src",
"cs:check": "./tools/php-cs-fixer fix --config ./.php-cs-fixer.dist --dry-run --diff",
"cs:fix": "./tools/php-cs-fixer fix --config ./.php-cs-fixer.dist --diff",
"phar:build": "./tools/box compile",
"changelog": "git cliff -o CHANGELOG.md",
"hooks": "./tools/captainhook install -f",
"post-install-cmd": "@hooks",
"bump:version": "./scripts/bump.sh",
"infection": "./tools/infection -s",
"infection:log": "./tools/infection --logger-html=infection.html"
},
"bin": [
"forme"
],
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"bin-dir": "tools",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
},
"platform": {
"php": "8.3.0"
}
}
}