forked from propelorm/Propel
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
35 lines (35 loc) · 1.2 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
{
"name": "palepurple/propel1",
"description": "Fork of Propel ORM (v1.7.x) with minor patches (phpdoc, PHP 7.x compatability etc)",
"keywords": ["orm", "active record", "mapping", "database", "persistence", "legacy"],
"homepage": "http://www.propelorm.org/",
"license": "MIT",
"authors": [{
"name": "William Durand",
"email": "[email protected]",
"homepage": "http://www.willdurand.fr"
}],
"autoload": {
"classmap": ["runtime/lib", "generator/lib"]
},
"include-path": ["runtime/lib", "generator/lib"],
"require": {
"php": "^7.4|^8.0",
"phing/phing": "^2.17",
"pear/pear-core-minimal": "*",
"pear/log": "^1.13"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpcompatibility/php-compatibility": "^9.3",
"squizlabs/php_codesniffer": "^3.5",
"ext-simplexml" : "*",
"ext-dom" : "*",
"vimeo/psalm": "^4.0"
},
"bin": ["generator/bin/propel-gen", "generator/bin/propel-gen.bat"],
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}