forked from tcds-io/php-layer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.11 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.11 KB
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": "tcds-io/php-layer",
"type": "library",
"description": "PHP Tool to validate domain boundaries",
"require": {
"ext-json": "*",
"symfony/console": "^6.0|^7.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^7.0",
"slevomat/coding-standard": "^8.15"
},
"scripts": {
"cs:check": "vendor/bin/phpcs --colors -ps",
"test:stan": "vendor/bin/phpstan analyse src --level=max --ansi",
"test:unit": "vendor/bin/phpunit --testdox --color=always",
"tests": [
"@cs:check",
"@test:stan",
"@test:unit"
]
},
"bin": [
"player"
],
"license": "MIT",
"autoload": {
"psr-4": {
"Tcds\\Io\\Player\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tcds\\Io\\Player\\": "tests/"
}
},
"authors": [
{
"name": "Juliana Saran",
"email": "julianasarans@gmail.com"
},
{
"name": "Thiago Cordeiro",
"email": "source@tcds.io"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}