forked from cmoralesweb/Verify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
112 lines (112 loc) · 3.51 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "bebat/verify",
"type": "library",
"description": "BDD assertion library for PHPUnit",
"keywords": [
"bdd",
"assertions",
"unit testing",
"unit test",
"phpunit",
"codeception",
"unit",
"test",
"testing"
],
"homepage": "https://github.com/bbatsche/Verify",
"license": "MIT",
"authors": [
{
"name": "Michael Bodnarchuk",
"email": "[email protected]"
},
{
"name": "Ben Batschelet",
"homepage": "https://github.com/bbatsche"
}
],
"require": {
"php": "^7.2 || ^8.0",
"ext-ctype": "*",
"ext-mbstring": "*",
"bebat/filesystem-assertions": "^1.1",
"phpunit/phpunit": "^8.0 || ^9.0 || ^10.1"
},
"replace": {
"codeception/verify": "*"
},
"require-dev": {
"captainhook/captainhook": "~5.14.4",
"captainhook/plugin-composer": "~5.3.3",
"codeception/assert-throws": "~1.3.0",
"ergebnis/composer-normalize": "~2.15.0",
"friendsofphp/php-cs-fixer": "~3.4.0 || ~3.22.0",
"maglnet/composer-require-checker": "^2.1.0 || ~4.4.0",
"mockery/mockery": "~1.3.6 || ~1.6.5",
"nette/neon": "~3.3.3",
"phpstan/extension-installer": "~1.1.0 || ~1.3.1",
"phpstan/phpstan": "~1.10.27",
"phpstan/phpstan-deprecation-rules": "~1.1.4",
"phpstan/phpstan-mockery": "~1.1.1",
"phpstan/phpstan-phpunit": "~1.3.13",
"phpstan/phpstan-strict-rules": "~1.5.1"
},
"suggest": {
"codeception/specify": "Highly readable test code blocks for PHPUnit and Codeception"
},
"config": {
"allow-plugins": {
"captainhook/plugin-composer": true,
"ergebnis/composer-normalize": true,
"ocramius/package-versions": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.2.x-dev"
}
},
"autoload": {
"psr-4": {
"BeBat\\Verify\\": "src"
},
"files": [
"src/function.php"
]
},
"autoload-dev": {
"psr-4": {
"BeBat\\Verify\\Dev\\": "dev",
"BeBat\\Verify\\Test\\": "test",
"BeBat\\Verify\\Test\\Examples\\": "test/_fixtures/Classes"
}
},
"minimum-stability": "stable",
"scripts": {
"post-update-cmd": "BeBat\\Verify\\Dev\\GenerateConfig::generate",
"style:check": "php-cs-fixer fix -v --ansi --dry-run --diff",
"style:fix": "php-cs-fixer fix -v --ansi",
"test": [
"@style:check",
"@test:static",
"@test:phpunit"
],
"test:coverage": "phpunit --coverage-clover=coverage.xml",
"test:phpunit": "phpunit --colors=always",
"test:static": "phpstan analyze --ansi"
},
"scripts-descriptions": {
"style:check": "Check all files for code style violations.",
"style:fix": "Automatically fix code style in all files.",
"test": "Check code style, static analysis, and unit tests.",
"test:coverage": "Run unit tests and generate coverage report.",
"test:phpunit": "Run unit & functional tests.",
"test:static": "Run phpstan static analysis."
},
"support": {
"issues": "https://github.com/bbatsche/Verify/issues",
"docs": "https://bebatverify.readthedocs.io/en/stable/"
}
}