-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1.38 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
{
"name": "garex/slovo-za-hockey",
"description": "Разговорник популярных английских слов для хоккея в формате карты мыслей.",
"type": "site",
"license": "MIT",
"authors": [
{
"name": "Ustimenko Alexander",
"email": "ustimenko.alexander@gmail.com"
}
],
"require": {
"symfony/yaml": "^4.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4": {
"Ontology\\": "src/"
}
},
"scripts": {
"fix": [
"php-cs-fixer fix --using-cache=no --ansi --allow-risky=yes --rules=@Symfony bin",
"php-cs-fixer fix --using-cache=no --ansi --allow-risky=yes --rules=@Symfony data",
"php-cs-fixer fix --using-cache=no --ansi --allow-risky=yes --rules=@Symfony src",
"php-cs-fixer fix --using-cache=no --ansi --allow-risky=yes --rules=@Symfony template"
],
"export": "@php bin/export.php",
"missing": "@php bin/missing.php",
"render-dot": "@php bin/render-dot.php",
"render-svg": "cd dot && ls -1 | parallel dot -Tsvg {} -o ../docs/svg/{}.svg",
"render-html": "@php bin/render-html.php",
"generate": [
"@render-dot",
"@render-svg",
"@render-html"
]
}
}