-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.9 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "bytic/framework",
"type": "library",
"description": "Php Framework",
"homepage": "https://github.com/ByTIC/request-detective",
"license": "MIT",
"authors": [
{
"name": "Gabriel Solomon",
"email": "hello@gabrielsolomon.ro"
}
],
"autoload": {
"psr-4": {
"Nip\\": "src"
},
"classmap": [
"legacy"
],
"files": [
"src/functions/application.php",
"src/functions/application_namespaced.php",
"src/functions/common.php"
]
},
"autoload-dev": {
"psr-4": {
"Nip\\Tests\\": "tests/",
"Nip\\Fixtures\\": "tests/fixtures"
}
},
"require": {
"php": "^7.0|^8.0",
"bytic/application": "^1.0|^2.0",
"bytic/cache": "^1.0|^2.0",
"bytic/collections": "^1.0|^2.0",
"bytic/console": "^1.0|^2.0",
"bytic/controllers": "^1.0|^2.0",
"bytic/config": "^1.0|^2.0",
"bytic/cookie": "^1.0|^2.0",
"bytic/container": "^1.0|^2.0|^2.0",
"bytic/database": "^1.0|^2.0",
"bytic/dispatcher": "^1.0|^2.0",
"bytic/debug": "^1.0|^2.0",
"bytic/debugbar": "^1.0|^2.0",
"bytic/form": "^1.0|^2.0",
"bytic/flash": "^1.0|^2.0",
"bytic/helpers": "^1.0|^2.0",
"bytic/http": "^1.0|^2.0",
"bytic/inflector": "^1.0|^2.0|^2.0",
"bytic/filesystem": "^1.0|^2.0",
"bytic/logger": "^1.0|^2.0",
"bytic/locale": "^1.0|^2.0",
"bytic/mail": "^1.0|^2.0",
"bytic/money": "^1.0|^2.0",
"bytic/mvc": "^1.0|^2.0",
"bytic/orm": "^1.0|^2.0",
"bytic/orm-filters": "^1.0|^2.0",
"bytic/profiler": "^1.0|^2.0",
"bytic/request-detective": "^1.0|^2.0",
"bytic/router": "^1.0|^2.0",
"bytic/session": "^1.0|^2.0",
"bytic/staging": "^1.0|^2.0",
"bytic/translation": "^1.0|^2.0",
"bytic/utility": "^1.0.78|^2.0",
"bytic/view": "^1.0|^2.0",
"bytic/validator": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"mockery/mockery": "^1.1"
}
}