-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1 KB
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": "ock/object-construction-kit",
"description": "Object Construction Kit (Ock)",
"license": "GPL-2.0-or-later",
"require": {
"php": ">=8.3",
"ock/adaptism": "*",
"ock/class-discovery": "self.version",
"ock/di-discovery": "self.version",
"ock/helpers": "self.version",
"ock/reflector-aware-attributes": "self.version",
"psr/log": "^1.1.4|^2.0|^3.0"
},
"require-dev": {
"ext-dom": "*",
"ext-libxml": "*",
"ock/testing": "self.version",
"phpunit/phpunit": "^10.5.38",
"symfony/dependency-injection": "^7.1.5",
"symfony/expression-language": "^7.1.4",
"symfony/yaml": "^7.1.5"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Ock\\Ock\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ock\\Ock\\Tests\\": "tests/src"
}
}
}