-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
62 lines (62 loc) · 1.52 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
59
60
61
62
{
"name": "facile-it/doctrine-test-module",
"type": "library",
"description": "Laminas Framework module that provides features that help you run your Laminas-based App's testsuite more efficiently with isolated tests",
"homepage": "https://github.com/facile-it/doctrine-test-module",
"license": "MIT",
"authors": [
{
"name": "Thomas Vargiu",
"email": "[email protected]"
}
],
"keywords": [
"laminas",
"mezzio",
"doctrine",
"phpunit",
"testing"
],
"extra": {
"laminas": {
"component": "Facile\\DoctrineTestModule"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"facile-it/facile-coding-standard": true
}
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-pdo": "*",
"phpunit/phpunit": "^9.6.22",
"doctrine/cache": "^1.10 || ^2.0",
"doctrine/dbal": "^2.11.3 || ^3.0",
"doctrine/doctrine-module": "^4.0 || ^5.0 || ^6.0",
"doctrine/doctrine-orm-module": "^3.0 || ^4.0 || ^5.0 || ^6.0",
"psr/container": "^1.0 || ^2.0"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^v2.0.0",
"facile-it/facile-coding-standard": "^1.3",
"friendsofphp/php-cs-fixer": "^3.68.1"
},
"autoload": {
"psr-4": {
"Facile\\DoctrineTestModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Facile\\DoctrineTestModule\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix --diff"
}
}