forked from Ocramius/CodeGenerationUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.76 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
54
55
56
57
{
"name": "ocramius/code-generator-utils",
"description": "A set of code generator utilities built on top of PHP-Parsers that ease its use when combined with Reflection",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Ocramius/CodeGenerationUtils",
"keywords": [
"reflection",
"code generation",
"php code",
"parser",
"compiler"
],
"authors": [
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.com/"
}
],
"require": {
"php": "~8.1.0 || ~8.2.0",
"nikic/php-parser": "^4.15.3"
},
"require-dev": {
"doctrine/coding-standard": "^11.1.0",
"phpunit/phpunit": "^9.5.28",
"psalm/plugin-phpunit": "^0.18.4",
"roave/infection-static-analysis-plugin": "^1.28.0",
"vimeo/psalm": "^5.4.0"
},
"autoload": {
"psr-4": {
"CodeGenerationUtils\\": "src/CodeGenerationUtils"
}
},
"autoload-dev": {
"psr-4": {
"CodeGenerationUtilsTests\\": "tests/CodeGenerationUtilsTest",
"CodeGenerationUtilsTestAsset\\": "tests/CodeGenerationUtilsTestAsset"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false
},
"platform": {
"php": "8.1.99"
}
}
}