-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 943 Bytes
/
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
{
"name": "brainbits/database-command",
"license": "proprietary",
"description": "Library providing symfony database commands",
"type": "library",
"autoload": {
"psr-4": {
"Brainbits\\DatabaseCommand\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brainbits\\Tests\\DatabaseCommand\\": "tests/"
}
},
"require": {
"php": "^8.2",
"symfony/console": "^6.0|^7.0",
"doctrine/dbal": "^3.1|^4.0"
},
"require-dev": {
"brainbits/phpcs-standard": "^7.0",
"brainbits/phpstan-rules": "^3.0",
"jangregor/phpstan-prophecy": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-phpunit": "^1.3",
"phpunit/phpunit": "^10.2"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}