-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
52 lines (52 loc) · 1.5 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
{
"name": "ar2labs/wiring",
"description": "Wiring is a PHP micro framework core with Interoperability (PSRs).",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "AR2 Labs Members",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"psr/cache": "^1.0",
"psr/container": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.1"
},
"autoload": {
"psr-4": {
"Wiring\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Wiring\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"@phpunit",
"@phpstan"
],
"check-all": [
"@php-cs-fixer",
"@phpstan",
"@phpunit-clover"
],
"php-cs-fixer": "php-cs-fixer fix --config=php_cs.dist --no-interaction",
"phpunit": "phpunit --configuration phpunit.xml.dist --coverage-html coverage --colors=always",
"phpunit-clover": "phpunit --configuration phpunit.xml.dist --coverage-clover=coverage-report.clover --log-junit=test-report.xml --colors",
"phpstan": "phpstan analyse src tests --level=max --no-progress --ansi"
},
"require-dev": {
"phpunit/phpunit": "^8.5"
}
}