-
Notifications
You must be signed in to change notification settings - Fork 35
/
composer.json
73 lines (73 loc) · 2.18 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
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
{
"name" : "propel/propel",
"type" : "library",
"description" : "High performance data-mapper ORM with optional active-record traits for RAD and modern PHP 7.1+",
"keywords" : [
"ORM",
"persistence",
"Active Record",
"data mapper"
],
"homepage" : "http://www.propelorm.org/",
"license" : "MIT",
"authors" : [{
"name" : "Marc J. Schmidt",
"email" : "marc@marcjschmidt.de"
}
],
"require": {
"php": ">=7.2",
"ext-pdo": "*",
"ext-sqlite3": "*",
"symfony/yaml": "^3.0|^4.0",
"symfony/console": "^3.0|^4.0",
"symfony/finder": "^3.0|^4.0",
"symfony/filesystem": "^3.0|^4.0",
"symfony/event-dispatcher": "^3.0|^4.0",
"symfony/config": "^3.0|^4.0",
"psr/log": "^1.0",
"gossi/php-code-generator": "0.5",
"mustache/mustache": "^2.6",
"marcj/topsort": "1.1.0",
"bramus/monolog-colored-line-formatter": "^2.0",
"phootwork/lang": "^0.9.0",
"phootwork/file": "^0.2.0",
"phootwork/collection": "^1.6",
"phootwork/json": "^1.2"
},
"require-dev" : {
"monolog/monolog" : "~1.3",
"phpunit/phpunit" : "^6.0|^7.0",
"behat/behat" : "^3.3",
"mikey179/vfsstream": "^1.6"
},
"suggest" : {
"monolog/monolog" : "The recommended logging library to use with Propel."
},
"autoload" : {
"psr-4" : {
"Propel\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"Propel\\Tests\\": [
"tests/",
"tests/Fixtures/bookstore/build/classes/Propel/Tests/",
"tests/Fixtures/schemas/build/classes/Propel/Tests/",
"tests/Fixtures/quoting/build/classes/Propel/Tests/",
"tests/Fixtures/bookstore-packaged/build/classes/Propel/Tests/"
],
"Foo\\": "tests/Fixtures/namespaced/build/classes/Foo/",
"Baz\\": "tests/Fixtures/namespaced/build/classes/Baz/"
}
},
"bin" : [
"bin/propel"
],
"extra" : {
"branch-alias" : {
"dev-master" : "3.0-dev"
}
}
}