-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 2 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
{
"name": "andanteproject/shared-query-builder",
"description": "A Doctrine 2 Query Builder decorator that makes easier to build your query in shared contexts",
"keywords": [
"doctrine",
"doctrine-orm",
"query-builder",
"php",
"php7",
"php74"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Andante Project",
"homepage": "https://github.com/andanteproject"
},
{
"name": "Cristoforo Cervino",
"homepage": "https://github.com/cristoforocervino"
}
],
"require": {
"php": "^8.0",
"doctrine/orm": "^3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.2",
"roave/security-advisories": "dev-master",
"phpunit/phpunit": "^9.5",
"symfony/framework-bundle": "^4.4 | ^5.0 | ^6.0 | ^7.0",
"ext-json": "*",
"friendsofphp/php-cs-fixer": "^3.58",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan-symfony": "^1.3"
},
"autoload": {
"psr-4": {
"Andante\\Doctrine\\ORM\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Andante\\Doctrine\\ORM\\Tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan analyse src tests",
"phpunit-base": "phpunit tests/",
"phpunit": "@phpunit-base --testdox",
"phpunit-coverage-text": "@phpunit-base --coverage-text --colors=never",
"cs-check": "mkdir -p var/cache && php-cs-fixer fix --dry-run --diff --cache-file=var/cache/.php_cs.cache --config=.php-cs-fixer.dist.php --allow-risky=yes",
"cs-fix": "mkdir -p var/cache && php-cs-fixer fix --diff --cache-file=var/cache/.php_cs.cache --config=.php-cs-fixer.dist.php --allow-risky=yes"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}