-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.12 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
{
"name": "bytic/container",
"type": "library",
"description": "Php Container module for bytic framework",
"homepage": "https://github.com/ByTIC/view",
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"Nip\\Container\\": "src",
"Nip\\Container\\Legacy\\": "legacy"
},
"classmap": [
"legacy"
],
"files": [
"src/functions/common.php"
]
},
"autoload-dev": {
"psr-4": {
"Nip\\Container\\Tests\\": "tests/src",
"Nip\\Container\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^8.1",
"symfony/dependency-injection": "^5.3|^6.0|^7.0"
},
"require-dev": {
"bytic/config": "^0.9|^1.0|^2.0",
"bytic/utility": "^1.0",
"bytic/phpqatools": "^1.0"
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"bytic/phpqatools": true
}
}
}