-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 1.72 KB
/
Copy pathcomposer.json
File metadata and controls
83 lines (83 loc) · 1.72 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
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
{
"name": "tbl0605/propel1-pervasive",
"description": "Propel 1.x ORM fork with experimental Pervasive PSQL (Actian Zen) support. Requires PHP 7.4+",
"keywords": [
"propel",
"propel-pervasive",
"propel-orm",
"orm",
"active record",
"pervasive",
"pervasive-sql",
"pervasive-psql",
"psql",
"actian",
"actian-zen",
"pdo",
"odbc",
"database",
"mapping",
"propel",
"persistence",
"php"
],
"homepage": "https://github.com/tbl0605/Propel-pervasive",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com",
"homepage": "http://www.willdurand.fr"
},
{
"name": "Thierry Blind",
"role": "Developer"
}
],
"autoload": {
"classmap": [
"runtime/lib",
"generator/lib"
]
},
"include-path": [
"runtime/lib",
"generator/lib"
],
"require": {
"php": ">=7.4",
"phing/phing": "^2.17"
},
"require-dev": {
"pear/pear": "^1.10",
"pear/pear_packagefilemanager": "dev-trunk",
"phpunit/phpunit": "^9.6.21 || ^10.5 || ^11.0 || ^12.0 || ^13.0"
},
"config": {
"policy": {
"advisories": {
"ignore-id": [
"PKSA-z3gr-8qht-p93v",
"PKSA-w57n-mhp6-c9sd",
"PKSA-v5yj-8nmz-sk2q",
"PKSA-ft77-7h5f-p3r6",
"PKSA-b14r-zh1d-vdrc",
"PKSA-xxgb-wq2d-7gpg",
"PKSA-4y51-dgkc-x4zc"
]
}
}
},
"extra": {
"branch-alias": {
"dev-master": "1.8-dev"
}
},
"bin": [
"generator/bin/propel-gen"
],
"scripts": {
"test": "@php vendor/bin/phpunit --configuration phpunit.xml.dist",
"test:setup": "@php test/setup_mysql_databases.php"
}
}