-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.22 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
{
"name": "camelot/doctrine-inheritance-mapping",
"description": "Doctrine inheritance mapping library",
"type": "library",
"license": "MIT",
"keywords": ["doctrine", "orm", "inheritance-mapping", "symfony", "symfony-bundle"],
"require": {
"php": "^7.4",
"doctrine/annotations": "^1.7",
"doctrine/orm": "^2.7"
},
"require-dev": {
"camelot/coding-style": "^2.0",
"doctrine/doctrine-bundle": "^2.0",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^8.4",
"ramsey/uuid-doctrine": "^1.5",
"symfony/config": "^5.0",
"symfony/debug-bundle": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/phpunit-bridge": "^5.0",
"symfony/var-dumper": "^5.0",
"symfony/yaml": "^5.0"
},
"autoload": {
"psr-4": {
"Camelot\\DoctrineInheritanceMapping\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Camelot\\DoctrineInheritanceMapping\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --show-progress=dots",
"test": "vendor/bin/phpunit --coverage-text"
}
}