-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
60 lines (60 loc) · 1.66 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
{
"name": "woohoolabs/zen",
"description": "Woohoo Labs. Zen DI Container and preload file generator",
"type": "library",
"keywords": ["Woohoo Labs.", "Zen", "DI", "DIC", "Ioc", "Dependency Injection Container", "PSR-11", "Preload", "Preload Generator"],
"license": "MIT",
"authors": [
{
"name": "Máté Kocsis",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/woohoolabs/zen/issues",
"source": "https://github.com/woohoolabs/zen"
},
"require": {
"php": "^8.0.0",
"psr/container": "^1.1 || ^2.0",
"php-di/phpdoc-reader": "^2.2.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10.0",
"phpstan/phpstan-strict-rules": "^1.5.0",
"phpunit/phpunit": "^9.5.0",
"squizlabs/php_codesniffer": "^3.6.0",
"woohoolabs/coding-standard": "^2.3.0",
"woohoolabs/releaser": "^1.2.0"
},
"provide": {
"psr/container-implementation": "1.0.0"
},
"autoload": {
"psr-4": {
"WoohooLabs\\Zen\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WoohooLabs\\Zen\\Examples\\": "examples/",
"WoohooLabs\\Zen\\Tests\\": "tests/"
}
},
"bin": [
"bin/zen"
],
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --level max src",
"phpcs": "phpcs",
"phpcbf": "phpcbf"
},
"config": {
"sort-packages": true,
"platform-check": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}