-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.32 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.32 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "bytic/controllers",
"description": "Php Framework",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"homepage": "https://github.com/bytic/controllers",
"require": {
"php": "^8.0",
"bytic/container": "^1.0|^2.0",
"bytic/helpers": "^1.0|^2.0",
"bytic/config": "^1.0|^2.0",
"bytic/cache": "^1.0|^2.0",
"bytic/http": "^1.0|^2.0",
"bytic/inflector": "^1.0|^2.0",
"bytic/utility": "^1.0|^2.0",
"symfony/framework-bundle": "^5.0|^6.0|^7.0",
"symfony/security-core": "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"bytic/phpqatools": "^1.0",
"mockery/mockery": "^1.0",
"bytic/dispatcher": "^1.0|^2.0",
"bytic/view": "^1.0|^2.0"
},
"autoload": {
"psr-4": {
"Nip\\Controllers\\": "src"
},
"classmap": [
"./legacy"
]
},
"autoload-dev": {
"psr-4": {
"Nip\\Controllers\\Tests\\": "tests/src",
"Nip\\Controllers\\Tests\\Fixtures\\": "tests/fixtures"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"bytic/phpqatools": true
}
}
}