-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (58 loc) · 2.07 KB
/
composer.json
File metadata and controls
59 lines (58 loc) · 2.07 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
54
55
56
57
58
59
{
"name": "runopencode/doctrine-naming-strategy-bundle",
"type": "symfony-bundle",
"description": "Set of useful Doctrine2 naming strategies for larger projects that allows you to add prefixes to Entity table names in batch.",
"keywords": [
"doctrine",
"symfony",
"naming strategy",
"orm"
],
"license": "MIT",
"authors": [
{
"name": "Nikola Svitlica a.k.a TheCelavi",
"email": "thecelavi@gmail.com",
"homepage": "http://www.runopencode.com",
"role": "Project lead"
},
{
"name": "RunOpenCode members",
"email": "support@runopencode.com",
"homepage": "http://www.runopencode.com"
}
],
"autoload": {
"psr-4": {
"RunOpenCode\\Bundle\\DoctrineNamingStrategy\\": "src/RunOpenCode/Bundle/DoctrineNamingStrategy/"
}
},
"autoload-dev": {
"psr-4": {
"RunOpenCode\\Bundle\\DoctrineNamingStrategy\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.4",
"ext-xml": "*",
"symfony/framework-bundle": "^4.0|^5.0",
"doctrine/doctrine-bundle": "^2.0",
"symfony/dependency-injection": "^4.0|^5.0",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/config": "^4.0|^5.0",
"doctrine/orm": "^2.5"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"matthiasnoback/symfony-config-test": "^4.1"
},
"scripts": {
"phpunit": "tools/phpunit.phar",
"composer-require-checker": "tools/composer-require-checker check composer.json --config-file=`pwd`/composer-require-checker.config.dist.json",
"composer-unused": "tools/composer-unused --excludeDir=build --excludeDir=tools",
"php-cs-fixer": "tools/php-cs-fixer fix --dry-run --diff --verbose --show-progress=estimating",
"phpstan": "tools/phpstan analyse",
"psalm": "tools/psalm --threads=8 --diff --diff-methods"
}
}