-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.32 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
{
"name": "serafim/dbc",
"type": "library",
"description": "Design by Contract framework for PHP",
"license": "MIT",
"require": {
"php": "^8.1",
"nikic/php-parser": "^4.13"
},
"autoload": {
"files": [
"src/bootstrap.php"
],
"psr-4": {
"Serafim\\Contracts\\": "src"
}
},
"require-dev": {
"vimeo/psalm": "^4.22",
"phpunit/phpunit": "^9.5",
"beberlei/assert": "^3.3",
"symfony/var-dumper": "^5.4|^6.0",
"jetbrains/phpstorm-attributes": "^1.0"
},
"autoload-dev": {
"psr-4": {
"Serafim\\Contracts\\Tests\\": "tests",
"Serafim\\Contracts\\Demo\\": "demo"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
},
"contracts": [
"Serafim\\Contracts\\Demo\\"
]
},
"suggest": {
"beberlei/assert": "^3.0 Thin assertion library for input validation in business models"
},
"scripts": {
"psalm": "psalm --no-cache"
},
"config": {
"optimize-autoloader": true,
"bin-compat": "full",
"sort-packages": true,
"allow-plugins": {
"serafim/dbc": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}