-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.12 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.12 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
42
{
"name": "komex/perk",
"description": "Library allows to modify namespaces, classes and methods in php files.",
"keywords": ["php", "library", "namespace", "class", "method", "modify"],
"minimum-stability": "stable",
"license": "CC-BY-SA-4.0",
"authors": [
{
"name": "Andrey Kolchenko",
"email": "andrey@kolchenko.me"
}
],
"support": {
"email": "andrey@kolchenko.me",
"issues": "https://github.com/komex/perk/issues",
"source": "https://github.com/komex/perk.git"
},
"require": {
"php": ">=5.4",
"ext-SPL": "*",
"ext-tokenizer": "*",
"symfony/event-dispatcher": "2.*"
},
"require-dev": {
"phpunit/phpunit": "~4.3.1",
"squizlabs/php_codesniffer": "1.5.*",
"phpmd/phpmd": "@stable"
},
"autoload": {
"psr-4": {
"Perk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Perk\\Test\\": "tests/"
}
},
"suggest": {
"komex/influence": "Allows to mock any classes, objects and new instances"
}
}