-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 888 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 888 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
{
"name": "star/specification",
"description": "Specification system to allow applying specification to a data source.",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.0|^8.0",
"ext-mbstring": "*",
"beberlei/assert": "^3.3",
"star/php-type": "^2.0"
},
"require-dev": {
"doctrine/dbal": "^3.3",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"Star\\Component\\Specification\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Star\\Component\\Specification\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"bin-dir": "bin/"
}
}