-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 3.41 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
79
80
81
82
{
"name": "runopencode/query-resources-loader-bundle",
"description": "Provides you with possibility to keep long queries in separate files in 'query' directory in your project.",
"keywords": [
"sql",
"sql loader",
"query",
"query loader"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Nikola Svitlica a.k.a TheCelavi",
"email": "[email protected]",
"homepage": "http://www.runopencode.com",
"role": "Project lead"
},
{
"name": "RunOpenCode members",
"email": "[email protected]",
"homepage": "http://www.runopencode.com"
}
],
"autoload": {
"psr-4": {
"RunOpenCode\\Bundle\\QueryResourcesLoader\\": "src/RunOpenCode/Bundle/QueryResourcesLoader/"
}
},
"autoload-dev": {
"psr-4": {
"RunOpenCode\\Bundle\\QueryResourcesLoader\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"ext-ctype": "*",
"doctrine/dbal": "^2.0|^3.0|^4.0",
"doctrine/orm": "^2.0|^3.0|^4.0",
"doctrine/persistence": "^1.3|^2.0|^3.0|^4.0",
"symfony/config": "^4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0|^7.0",
"symfony/finder": "^4.0|^5.0|^6.0|^7.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0",
"symfony/twig-bundle": "^4.0|^5.0|^6.0|^7.0",
"twig/twig": "^2.0|^3.0",
"symfony/doctrine-bridge": "^4.0|^5.0|^6.0|^7.0",
"doctrine/doctrine-bundle": "^1.0|^2.0",
"symfony/cache": "^4.0|^5.0|^6.0|^7.0",
"symfony/cache-contracts": "^1.0|^2.0|^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"bamarni/composer-bin-plugin": "^1.8",
"symfony/monolog-bundle": "^1.0|^2.0|^3.0"
},
"scripts": {
"bin": "echo 'bamarni/composer-bin-plugin is not installed.'",
"phpunit": [
"Composer\\Config::disableProcessTimeout",
"XDEBUG_MODE=coverage vendor-bin/dev/vendor/bin/phpunit --coverage-html ./build/phpunit --coverage-clover=./build/phpunit/clover.xml"
],
"composer-require-checker": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/composer-require-checker check composer.json --config-file=`pwd`/composer-require-checker.config.dist.json",
"composer-unused": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/composer-unused --excludeDir=build --excludeDir=tools",
"php-cs-fixer": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/php-cs-fixer fix --diff --verbose --show-progress=dots --allow-risky=yes",
"phpmd": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/phpmd src xml phpmd.xml --reportfile build/phpmd/phpmd.xml&vendor-bin/dev/vendor/bin/phpmd src html phpmd.xml --reportfile build/phpmd/phpmd.html&vendor-bin/dev/vendor/bin/phpmd src text phpmd.xml --reportfile build/phpmd/phpmd.txt",
"phpstan": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/phpstan analyse --memory-limit=-1",
"psalm": "XDEBUG_MODE=off vendor-bin/dev/vendor/bin/psalm --threads=8 --no-diff --no-cache"
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "vendor-bin",
"forward-command": true
}
}
}