-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 905 Bytes
/
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
{
"name": "jason-napolitano/psr11-container",
"type": "library",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"test": "./vendor/bin/pest",
"fix:tests": "./vendor/bin/phpcbf --standard=PSR12 tests/",
"fix:src": "./vendor/bin/phpcbf --standard=PSR12 src/"
},
"require": {
"psr/container": ">=2.0.2",
"php": ">=8.2"
},
"require-dev": {
"pestphp/pest": "^2.35",
"squizlabs/php_codesniffer": "^3.10",
"symfony/var-dumper": ">=v7.1.3"
},
"autoload": {
"files": [
"src/Functions.php"
],
"psr-4": {
"ContainerFactory\\": "src/",
"Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable"
}