-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
62 lines (62 loc) · 1.8 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
55
56
57
58
59
60
61
62
{
"name": "respect/assertion",
"description": "The power of Respect\\Validation into an assertion library",
"keywords": ["respect", "assertion", "assert"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Respect\\Assertion\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Respect\\Test\\Integration\\Assertion\\": "tests/integration",
"Respect\\Test\\Unit\\Assertion\\": "tests/unit"
}
},
"require": {
"php": "^8.5",
"respect/stringifier": "^3.0",
"respect/validation": "^3.0",
"symfony/polyfill-mbstring": "^v1.27.0"
},
"require-dev": {
"malukenho/docheader": "^0.1.8",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^10.0.17",
"respect/coding-standard": "^4.0.0",
"squizlabs/php_codesniffer": "^3.7.2"
},
"suggest": {
"ext-mbstring": "Multibyte String Functions"
},
"authors": [
{
"name": "Henrique Moody",
"email": "henriquemoody@gmail.com"
}
],
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"docheader": "vendor/bin/docheader check src/ tests/",
"phpcs": "vendor/bin/phpcs",
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "vendor/bin/phpunit",
"phpunit-integration": "vendor/bin/phpunit --testsuite=integration",
"phpunit-unit": "vendor/bin/phpunit --testsuite=unit",
"qa": [
"@docheader",
"@phpcs",
"@phpstan",
"@phpunit"
]
}
}