forked from propelorm/PropelBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.32 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.32 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
{
"name": "deviscoding/propel1-bundle",
"description": "Fork of PropelBundle with patches for PHP 7.x and Symfony 3.x compatibility.",
"keywords": ["propel", "orm", "persistence","symfony","3.x","1.x"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com",
"role": "Developer (original bundle)"
},
{
"name": "AMJones",
"email": "am@jonesiscoding.com",
"role": "Developer (forked changes only)"
}
],
"autoload": {
"psr-4": { "Propel\\Bundle\\PropelBundle\\": "" },
"files": ["autoload_aliases.php"],
"exclude-from-classmap": [ "Tests/","vendor/propel/propel1/runtime/lib","vendor/propel/propel1/generator/lib" ]
},
"version": "1.7.5",
"require": {
"ext-simplexml": "*",
"ext-pdo": "*",
"symfony/framework-bundle": "^3.0.2",
"palepurple/propel1": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^4.8.21|^5.0.10",
"phing/phing": "^2.12",
"symfony/symfony": "^3.0.2",
"sensio/framework-extra-bundle": "^3.0.2",
"fzaninotto/faker": "^1.5"
},
"conflict": {
"symfony/propel1-bridge": ">=2.8.0"
},
"replace": {
"propel/propel-bundle": "1.6.x-dev"
},
"suggest": {
"propel/propel-acl-bundle": "For using the Propel ACL implementation"
}
}