-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 959 Bytes
/
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
{
"name": "chq81/query-inheritance-base-behavior",
"description": "Propel 2 Query Inheritance Behavior to provide generic base query class for query inheritance objects",
"type": "propel-behavior",
"license": "MIT",
"authors": [
{
"name": "Christoph Quadt",
"email": "[email protected]"
}
],
"keywords": [
"propel",
"query",
"inheritance",
"base",
"behavior"
],
"require": {
"chq81/query-inheritance-behavior-builder": "^1.0",
"propel/propel": "dev-master || 2.0.0-alpha10"
},
"extra": {
"name": "custom-query-inheritance",
"class": "chq81\\CustomQueryInheritance\\Behavior\\InheritanceBaseBehavior"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload": {
"classmap": [
"src/"
]
}
}