-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.03 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"name": "nxu/php-nano-class-parser",
"description": "A fully opinionated, extremely minimal, and very optimistic package to help add custom code to generated PHP classes.",
"type": "library",
"require": {
"php": ">=8.2",
"ext-tokenizer": "*",
"nikic/php-parser": "^v5.4.0",
"illuminate/collections": ">=10"
},
"require-dev": {
"pestphp/pest": "^3.0",
"phpstan/phpstan": "^1.10",
"laravel/pint": "^1.11",
"thecodingmachine/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.5",
"symfony/var-dumper": "^6.3"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Nxu\\PhpNanoClassParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"authors": [
{
"name": "nxu",
"email": "nxu@nxu.hu"
}
],
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}