-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 1.46 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
{
"name": "free2one/hyperf-doctrine",
"type": "library",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"doctrine",
"swoole",
"swow"
],
"authors": [
{"name": "free2one", "email": "free2someone@outlook.com"}
],
"description": "Doctrine ORM for Hyperf framework",
"autoload": {
"psr-4": {
"Hyperf\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\": "tests"
}
},
"require": {
"php": ">=8.0",
"doctrine/orm": "^2.15.0",
"hyperf/cache": "^3.0",
"hyperf/config": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/di": "^3.0",
"hyperf/framework": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"hyperf/command": "^3.0",
"hyperf/redis": "^3.0",
"hyperf/testing": "^3.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": ">=7.0",
"swoole/ide-helper": "^4.5",
"symfony/var-dumper": "^6.0",
"gedmo/doctrine-extensions": "^3.0"
},
"suggest": {
"ext-pdo": "Required to use MySQL Client."
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "@php tests/phpunit-adaptor run",
"analyse": "phpstan analyse --memory-limit 1024M -l 0 ./src",
"cs-fix": "php-cs-fixer fix $1"
},
"extra": {
"hyperf": {
"config": "Hyperf\\Doctrine\\ConfigProvider"
}
}
}