-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.37 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
{
"name": "lsv/rejseplan-php-api",
"description": "PHP wrapper for Rejseplanen.dk API",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Martin Aarhof",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Lsv\\Rejseplan\\": "src"
}
},
"require": {
"php": "^8.0",
"ext-json": "*",
"symfony/options-resolver": "^6.0",
"symfony/serializer": "^6.0",
"symfony/property-access": "^6.0",
"symfony/property-info": "^6.0",
"psr/http-client": "^1.0",
"nyholm/psr7": "^1.4"
},
"autoload-dev": {
"psr-4": {
"Lsv\\RejseplanTest\\": "tests"
}
},
"require-dev": {
"symfony/phpunit-bridge": "^6.0",
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.5",
"sebastian/phpcpd": "^6.0",
"phpstan/phpstan": "^1.4",
"symfony/http-client": "^6.0",
"php-http/mock-client": "^1.5",
"symfony/var-dumper": "^6.0",
"infection/infection": "^0.26.1",
"rregeer/phpunit-coverage-check": "^0.3.1"
},
"scripts": {
"fix": [
"php-cs-fixer fix",
"phpstan",
"simple-phpunit --coverage-text --coverage-clover=.build/clover.xml --coverage-xml=.build/coverage --log-junit=.build/coverage/junit.xml",
"coverage-check .build/clover.xml 100",
"infection --skip-initial-tests --threads=8 --coverage=.build/coverage"
]
}
}