-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1 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
{
"authors": [
{
"name": "Dennis Meckel"
}
],
"autoload": {
"psr-4": {
"Rayne\\wz2008\\Graph\\": "src",
"Rayne\\wz2008\\Graph\\Benchmark\\": "benchmarks"
}
},
"description": "Parses the \"Classification of Economic Activities\" (wz2008) issued by the Statistisches Bundesamt to build multiple hierarchically structured trees.",
"keywords": [
"wz2008",
"wirtschaftszweige",
"nace",
"naics",
"isic",
"statistisches-bundesamt",
"graph",
"tree"
],
"license": "MIT",
"name": "rayne/wz2008-graph",
"require": {
"php": ">=5.6",
"ext-simplexml": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpbench/phpbench": "^0.16.9",
"phpunit/phpunit": "^5.0|^7.0|^8.0"
},
"support": {
"issues": "https://github.com/rayne/wz2008-graph/issues",
"source": "https://github.com/rayne/wz2008-graph"
},
"scripts": {
"bench": "phpbench run",
"format": "php-cs-fixer fix",
"test": "phpunit"
}
}