-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
57 lines (57 loc) · 1.38 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
55
56
57
{
"name": "ta-tikoma/phpunit-architecture-test",
"description": "Methods for testing application architecture",
"type": "library",
"license": "MIT",
"keywords": [
"phpunit",
"testing",
"test",
"stucture",
"architecture"
],
"authors": [
{
"name": "Ni Shi",
"email": "futik0ma011@gmail.com"
},
{
"name": "Nuno Maduro",
"email": "enunomaduro@gmail.com"
}
],
"require": {
"php": "^8.1.0",
"phpunit/phpunit": "^10.5.5 || ^11.0.0",
"nikic/php-parser": "^4.18.0 || ^5.0.0",
"symfony/finder": "^6.4.0 || ^7.0.0",
"phpdocumentor/reflection-docblock": "^5.3.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.52",
"laravel/pint": "^1.13.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"PHPUnit\\Architecture\\": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/"
]
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:type": "phpstan analyse --ansi --memory-limit=-1",
"test:unit": "php bin/phpunit --colors=always",
"test": [
"@test:lint",
"@test:type",
"@test:unit"
]
}
}