-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
47 lines (47 loc) · 1.34 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
{
"name": "linio/doctrine-service-provider",
"description": "Doctrine DBAL and ORM service providers for Pimple 3.",
"keywords": ["linio", "doctrine", "dbal", "orm", "pimple"],
"type": "library",
"license": "BSD-3-Clause",
"require": {
"php": "^8.1",
"pimple/pimple": "^3.5",
"doctrine/orm": "^2.13",
"symfony/cache": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "3.13",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-mockery": "^1.1"
},
"suggest": {
"ext-memcached": "Allows usage of Memcached.",
"ext-redis": "Allows usage of phpredis.",
"ext-apcu": "Allows usage of PECL APCu."
},
"autoload": {
"psr-4": {
"Linio\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Linio\\Doctrine\\": "tests/"
}
},
"scripts": {
"check": [
"@lint:check",
"@static-analysis",
"@test"
],
"test": "vendor/bin/phpunit --verbose",
"lint": "php-cs-fixer fix --verbose --show-progress=dots",
"lint:check": "php-cs-fixer fix --dry-run --verbose --show-progress=dots",
"static-analysis": [
"phpstan analyse --ansi --memory-limit=-1"
]
}
}