-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.71 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
{
"name": "dannyvandersluijs/exact-online-meta-data-tool",
"description": "A meta data tool for the ExactOnline API documentation",
"type": "project",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Danny van der Sluijs",
"email": "danny.vandersluijs@icloud.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.1",
"ext-json": "*",
"myclabs/php-enum": "^1.8",
"symfony/console": "^6.4",
"symfony/dom-crawler": "^6.4"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"guzzlehttp/guzzle": "^6.5 || ^7.0",
"php-coveralls/php-coveralls": "^2.7",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.0.3",
"squizlabs/php_codesniffer": "^3.8"
},
"autoload": {
"psr-4": {
"MetaDataTool\\": "MetaDataTool/"
}
},
"autoload-dev": {
"psr-4": {
"MetaDataTool\\Tests\\": "tests/"
}
},
"scripts": {
"unit-tests": "phpunit --testsuite unit --testdox --coverage-clover=build/logs/clover-unit-tests.xml",
"integration-tests": "phpunit --testsuite integration --testdox --coverage-clover=build/logs/clover-integration-tests.xml",
"phpcs": "phpcs --standard=PSR12 ./MetaDataTool/ ./tests/",
"phpcbf": "phpcbf --standard=PSR12 ./MetaDataTool/ ./tests/",
"phpstan": "phpstan analyse",
"build-meta-data": ["./exact-online-meta-data-tool run --destination=."]
},
"bin": [
"exact-online-meta-data-tool"
],
"config": {
"sort-packages": true
}
}