forked from hanneskod/classtools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 759 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 759 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
{
"name": "hanneskod/classtools",
"description": "Find, extract and process classes from file system",
"keywords": ["class finder", "metaprogramming", "code generator", "minimizer"],
"homepage": "https://github.com/hanneskod/classtools",
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Hannes Forsgård",
"email": "hannes.forsgard@fripost.org"
}
],
"autoload": {
"psr-4": {
"hanneskod\\classtools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"hanneskod\\classtools\\": "tests/"
}
},
"require": {
"php": ">=7.2",
"nikic/php-parser": "^4",
"symfony/finder": "^4|^5"
}
}