-
Notifications
You must be signed in to change notification settings - Fork 398
/
composer.json
78 lines (78 loc) · 2.59 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
74
75
76
77
78
{
"name": "propel/propel",
"type": "library",
"description": "Propel2 is an open-source Object-Relational Mapping (ORM) for PHP.",
"keywords": [
"ORM",
"persistence",
"Active Record"
],
"homepage": "http://www.propelorm.org/",
"license": "MIT",
"authors": [
{
"name": "William Durand",
"email": "william.durand1@gmail.com"
}
],
"require": {
"php": ">=7.4",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"symfony/yaml": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/config": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/console": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/filesystem": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/finder": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/translation": "^5.0.0 || ^6.0.0 || ^7.0.0",
"symfony/validator": "^5.0.0 || ^6.0.0 || ^7.0.0"
},
"require-dev": {
"ext-pdo": "*",
"ext-json": "*",
"ext-xml": "*",
"monolog/monolog": "^1.3 || ^2.3 || ^3.0",
"phpstan/phpstan": "^1.2",
"phpunit/phpunit": "^9.5.0",
"spryker/code-sniffer": "^0.17.2",
"psalm/phar": "^4.23",
"mikey179/vfsstream": "^1.6"
},
"suggest": {
"monolog/monolog": "The recommended logging library to use with Propel."
},
"autoload": {
"psr-4": {
"Propel\\": "src/Propel/"
}
},
"bin": [
"bin/propel"
],
"scripts": {
"testsuite": "composer run test && composer run cs-check && composer run stan && composer run psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "vendor/bin/phpstan analyze",
"stan-baseline": "vendor/bin/phpstan analyze --generate-baseline",
"psalm": "vendor/bin/psalm.phar --config=psalm.xml",
"psalm-update-baseline": "vendor/bin/psalm.phar --update-baseline",
"psalm-set-baseline": "vendor/bin/psalm.phar --set-baseline=psalm-baseline.xml",
"psalm-update-report": "vendor/bin/psalm.phar --report=psalm-report.xml",
"test": "phpunit --colors=always",
"test:agnostic": "@test -c tests/agnostic.phpunit.xml",
"test:mysql": "@test -c tests/mysql.phpunit.xml",
"test:sqlite": "@test -c tests/sqlite.phpunit.xml",
"test:pgsql": "@test -c tests/pgsql.phpunit.xml"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"config": {
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}