-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.01 KB
/
composer.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "phpfui/php-orm-slq-benchmarks",
"description": "A benchmark suite to test various SQL servers and PHP ORM libraries",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"SOB\\": "SOB/"
}
},
"authors": [
{
"name": "Bruce Wells",
"email": "brucekwells@gmail.com"
}
],
"require": {
"php": ">=8.5",
"phpunit/php-timer": "^9.0",
"phpfui/orm": "^3.0",
"illuminate/database": "*",
"illuminate/contracts": "*",
"illuminate/events": "*",
"cakephp/cakephp": "^5.0",
"doctrine/orm": "^3.3",
"symfony/cache": "^8.0",
"propel/propel": "dev-master",
"gabordemooij/redbean": "dev-master",
"php-patterns/activerecord": "^2.0",
"symfony/var-exporter": "^7.0"
},
"require-dev": {
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "*",
"phpfui/phpunit-syntax-coverage": "^1.0"
}
}