This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
101 lines (101 loc) · 3.74 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "biurad/php-sdk",
"type": "library",
"description": "A modern PHP framework, build with nette, symfony and biurad libraries",
"keywords": ["mvc","framework","biurad","php"],
"homepage": "https://www.biurad.com",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Divine Niiquaye Ibok",
"email": "[email protected]"
},
{
"name": "Biurad Lap Community",
"homepage": "https://biurad.com/contributors"
}
],
"support": {
"docs": "https://docs.biurad.com/php-sdk#nette",
"issues": "https://github.com/biurad/php-sdk/issues",
"rss": "https://github.com/biurad/php-sdk/releases.atom",
"source": "https://github.com/biurad/php-sdk"
},
"require": {
"php": "^7.2 || ^8.0",
"ext-json": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"biurad/dependency-injection": "1.x-dev",
"biurad/http-galaxy": "1.x-dev",
"composer/package-versions-deprecated": "^1.11",
"divineniiquaye/flight-routing": "1.x-dev",
"nette/bootstrap": "^3.0",
"psr/log": "^1.1",
"symfony/console": "^5.1",
"symfony/polyfill-mbstring": "~1.0",
"symfony/polyfill-php73": "^1.11",
"symfony/polyfill-php80": "^1.15",
"symfony/process": "^5.1",
"tracy/tracy": "^2.7"
},
"require-dev": {
"biurad/annotations": "^1.x-dev",
"biurad/cache": "1.x-dev",
"biurad/cycle-bridge": "1.x-dev",
"biurad/events-bus": "1.x-dev",
"biurad/flysystem": "1.x-dev",
"biurad/templating": "1.x-dev",
"cycle/annotated": "^2.0",
"cycle/migrations": "^1.0",
"doctrine/annotations": "^1.11",
"latte/latte": "^2.8",
"phpunit/phpunit": "^8.5 || ^9.4",
"symfony/dotenv": "^5.1",
"spiral/migrations": "^2.1",
"squizlabs/php_codesniffer": "^3.5",
"tharos/leanmapper": "dev-develop",
"vimeo/psalm": "^3.11"
},
"suggest": {
"biurad/annotations": "A powerful annotations and attributes support for PHP 7.2+",
"biurad/cache": "A powerful cache library for advanced caching and Http Galaxy session cache handler",
"biurad/cycle-bridge": "A well-integrated Cycle ORM and Spiral Database support for Nette and Biurad",
"biurad/events-bus": "To use and add Symfony Events support to Nette and Biurad",
"biurad/flysystem": "A FileManager for handling filesytem on local disk and cloud storage",
"biurad/templating": "A library that provides all the tools needed in working with any kind of template system",
"cycle/annotated": "To add Doctrine annotations support to Cycle ORM",
"cycle/migrations": "For Automated migrations on commands using Cycle ORM",
"nettrine/orm": "A well-integrated Doctrine2 ORM support for Nette and Biurad",
"nextras/orm": "A Lightweight and high-performance ORM with clean object design.",
"spiral/migrations": "A Database migrations, migration scaffolding for Spiral Database",
"tharos/leanmapper": "An ORM based on powerful Dibi database abstraction library"
},
"autoload": {
"psr-4": {
"Biurad\\Framework\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Biurad\\Framework\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"scripts": {
"phpcs": "phpcs -q",
"psalm": "psalm --show-info=true",
"phpunit": "phpunit --no-coverage",
"test": [
"@phpcs",
"@psalm",
"@phpunit"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}