-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 904 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 904 Bytes
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
{
"name": "bovigo/assert",
"description": "Provides assertions for unit tests.",
"license": "BSD-3-Clause",
"require": {
"php": "^8.3",
"sebastian/comparator": "^6.2 || ^7.1",
"sebastian/exporter": "^6.3 || ^7.0"
},
"require-dev": {
"mikey179/vfsstream": "^1.6.12",
"phpunit/phpunit": "^11.5 || ^12.4"
},
"autoload": {
"psr-4": {
"bovigo\\assert\\": "src/main/php"
},
"files": [
"src/main/php/assert.php",
"src/main/php/predicate/predicates.php"
]
},
"autoload-dev": {
"psr-4": {
"bovigo\\assert\\": "src/test/php"
}
},
"extra": {
"branch-alias": {
"dev-main": "8.1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
}
}