forked from FriendsOfSymfony1/doctrine1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.1 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
{
"name": "pepeverde/doctrine1",
"description": "PHP5 Database ORM",
"license": "LGPL-2.0-or-later",
"type": "library",
"keywords": [
"orm",
"database"
],
"authors": [
{
"name": "Konsta Vesterinen",
"email": "[email protected]"
},
{
"name": "Jonathan Wage",
"email": "[email protected]"
}
],
"homepage": "http://www.doctrine-project.org",
"require": {
"php": "^7.4",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-json": "*"
},
"require-dev": {
"ext-redis": "*",
"predis/predis": "1.1.10",
"vimeo/psalm": "1.1.9 || ^3.14.2 || ^4.24.0"
},
"suggest": {
"ext-oci8": "Extension needed when working with Oracle database",
"ext-redis": "Redis extension for Redis Cache driver",
"predis/predis": "Redis client for Redis Cache driver"
},
"autoload": {
"psr-0": {
"Doctrine_": "lib/",
"sfYaml": "lib/Doctrine/Parser/sfYaml"
}
},
"scripts": {
"psalm": "./vendor/bin/psalm",
"runtests": "cd tests && php -dshort_open_tag=Off -dmagic_quotes_gpc=Off index.php"
}
}