-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.35 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.35 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
48
49
50
51
52
53
{
"name": "macpaw/postgres-schema-bundle",
"description": "A Symfony bundle to add schema wrapper for postgres",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"Macpaw\\PostgresSchemaBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Macpaw\\PostgresSchemaBundle\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"doctrine/orm": "^2.17 || ^3.0",
"symfony/doctrine-bridge": "^6.4 || ^7.0",
"doctrine/dbal": "^3.4",
"macpaw/schema-context-bundle": "^1.1"
},
"require-dev": {
"doctrine/migrations": "^3.6",
"doctrine/doctrine-fixtures-bundle": "^3.5 || ^4.0",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "3.7.*",
"dg/bypass-finals": "^1.9"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"composer-validate": [
"composer validate"
],
"cs": [
"vendor/bin/phpcs"
],
"cs-fix": [
"vendor/bin/phpcbf"
],
"phpstan": [
"vendor/bin/phpstan analyse"
],
"phpunit": [
"vendor/bin/phpunit"
]
}
}