-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 870 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 870 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
31
32
33
34
35
{
"name": "funivan/php-tokenizer",
"description": "Wrapper around token_get_all. Easy to extract and modify php code.",
"keywords": [
"tokenizer"
],
"homepage": "https://github.com/funivan/PhpTokenizer",
"license": "MIT",
"authors": [
{
"name": "Ivan Shcherbak",
"email": "alotofall@gmail.com",
"homepage": "https://github.com/funivan/",
"role": "Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"rector/rector": "^1.0.2",
"symplify/easy-coding-standard": "^12.1",
"phpunit/phpunit": "^10"
},
"autoload": {
"psr-4": {
"Funivan\\PhpTokenizer\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Funivan\\PhpTokenizer\\": "tests"
}
}
}