-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.62 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "berbeflo/brainfuck",
"description": "just a brainfuck interpreter",
"type": "library",
"keywords": [
"brainfuck"
],
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpmd/phpmd": "2.8.2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^8.0",
"squizlabs/php_codesniffer": "^3.4"
},
"authors": [
{
"name": "Florian Berberich",
"email": "[email protected]"
}
],
"require": {
},
"autoload": {
"psr-4": {
"berbeflo\\Brainfuck\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"berbeflo\\Brainfuck\\Test\\" : "tests/"
}
},
"config": {
"use-include-path": false,
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"run-ci" : [
"phpcs --standard=PSR2 --report=xml src/",
"phpmd src/ xml phpmd.xml",
"phpunit --coverage-html cc --whitelist src --testdox tests"
],
"fix-cs" : [
"php-cs-fixer fix src/ --format=xml --diff --verbose --allow-risky=yes",
"php-cs-fixer fix tests/ --format=xml --diff --verbose --allow-risky=yes"
],
"check-cs" : [
"phpcs --standard=PSR2 --report=xml src/",
"phpmd src/ xml phpmd.xml"
],
"run-test" : [
"phpunit --coverage-html cc --whitelist src --testdox --bootstrap tests/bootstrap.php tests"
],
"run-stan" : [
"phpstan analyse -l max -c phpstan.neon src"
]
}
}