-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.36 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
{
"name": "68publishers/doctrine-persistence",
"description": "Persistence utils like transaction objects.",
"keywords": ["68publishers", "doctrine", "persistence", "nette", "doctrine-persistence"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.1",
"ext-json": "*",
"nette/utils": "^3.0 || ^4.0",
"doctrine/orm": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19",
"mockery/mockery": "^1.4",
"nette/application": "^3.0.6",
"nette/bootstrap": "^3.0",
"nette/di": "^3.0.3",
"nette/tester": "^2.3.4",
"roave/security-advisories": "dev-master"
},
"suggest": {
"nette/di": "For integration into Nette Framework."
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\DoctrinePersistence\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\DoctrinePersistence\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix -v",
"tests": [
"@tests:lowest",
"@tests:highest"
],
"tests:lowest" : [
"@composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable",
"vendor/bin/tester ./tests"
],
"tests:highest" : [
"@composer update --no-progress --prefer-dist --prefer-stable",
"vendor/bin/tester ./tests"
]
}
}