-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.25 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.25 KB
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
{
"name": "68publishers/doctrine-query-objects",
"description": "Query objects for Doctrine ORM.",
"keywords": ["68publishers", "doctrine", "query", "objects", "nette"],
"license": "MIT",
"authors": [
{
"name": "Tomáš Glawaty",
"email": "tomasglawaty@icloud.com"
}
],
"require": {
"php": "^7.3 || ^8.1",
"doctrine/orm": "^2.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"nette/di": "^3.0.3",
"nette/tester": "^2.3.4",
"nette/utils": "^3.0",
"roave/security-advisories": "dev-master"
},
"suggest": {
"nette/utils": "If you want to use ResultSet Applicator NettePaginatorApplicator.",
"nette/di": "For integration with Nette Framework."
},
"autoload": {
"psr-4": {
"SixtyEightPublishers\\DoctrineQueryObjects\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SixtyEightPublishers\\DoctrineQueryObjects\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"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"
]
}
}