-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 948 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 948 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
{
"name": "quintenmbusiness/php-ast-code-generation-helper",
"keywords": ["ast", "php-parser", "code generation", "ast helper", "php code generator", "code generation tool"],
"description": "A PHP library for generating Abstract Syntax Tree (AST) nodes programmatically, simplifying code generation with nikic/php-parser.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.2 < 8.4",
"nikic/php-parser": "^5.3",
"phpunit/phpunit": "^11.0.1"
},
"autoload": {
"psr-4": {
"quintenmbusiness\\PhpAstCodeGenerationHelper\\": "src/"
}
},
"authors": [
{
"name": "Quinten Muijser",
"email": "quintenmbusiness@gmail.com"
}
],
"scripts": {
"run-generators": "php run_generators.php"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"friendsofphp/php-cs-fixer": "^3.65"
}
}