-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
41 lines (41 loc) · 1.08 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
{
"name": "cycle/proxy-factory",
"type": "module",
"license": "MIT",
"description": "Proxy Factory Interface implementation for cycle ORM",
"require": {
"php": ">=7.2",
"ext-mbstring": "*",
"nikic/php-parser": "^4.2",
"doctrine/instantiator": "^1.2",
"cycle/orm": "^1.1",
"spiral/files": "^2.7"
},
"require-dev": {
"ext-pdo": "*",
"phpunit/phpunit": "~8.0",
"cycle/annotated": "^1.0",
"spiral/code-style": "^1.0",
"roave/security-advisories": "dev-master"
},
"autoload": {
"psr-4": {
"Cycle\\ORM\\Promise\\": "src/Promise"
},
"files": [
"src/functions/utils.php",
"src/functions/expressions.php",
"src/functions/version.php",
"src/functions/injector.php"
]
},
"autoload-dev": {
"psr-4": {
"Cycle\\ORM\\Promise\\Tests\\": "tests/Promise/",
"Cycle\\ORM\\Promise\\Tests74\\": "tests/php74/",
"Cycle\\ORM\\Promise\\Tests80\\": "tests/php80/",
"Cycle\\ORM\\Promise\\Tests\\Promises\\": "tests/fixtures/promises/",
"": "tests/fixtures/withoutNamespace/"
}
}
}