-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.21 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.21 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
{
"name": "pongee/database-schema-visualization",
"license": "MIT",
"description": "Database schema visualization",
"keywords": [
"database",
"schema",
"visualization",
"mysql",
"plantuml"
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/console": "^5.0||^6.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.0",
"rector/rector": "^2.0",
"roave/security-advisories": "dev-latest",
"slevomat/coding-standard": "^8.0",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Pongee\\DatabaseSchemaVisualization\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pongee\\DatabaseSchemaVisualization\\Test\\": "test/"
}
},
"bin": [
"database-schema-visualization"
],
"scripts": {
"phpcs": "phpcs",
"phpstan": "phpstan analyse --memory-limit=512M",
"test": "php ./vendor/bin/phpunit",
"rector": "php ./vendor/bin/rector process example src test",
"rector-dry-run": "php ./vendor/bin/rector process example src test --dry-run"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}