-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
61 lines (61 loc) · 1.84 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
{
"name": "api-skeletons/doctrine-data-fixture",
"description": "Doctrine Data Fixtures with Grouping for Laminas",
"type": "library",
"license": "MIT",
"keywords": [
"doctrine",
"data-fixture",
"laminas"
],
"homepage": "https://apiskeletons.com",
"authors": [
{
"name": "Tom Anderson",
"email": "tom.h.anderson@gmail.com"
}
],
"prefer-stable": true,
"require": {
"php": "^7.2.0 || ~8.0",
"doctrine/data-fixtures": "^1.3.0",
"doctrine/doctrine-module": "^2.1 || ^4.0 || ^5.0",
"laminas/laminas-modulemanager": "^2.7.2 || ^3.0.0",
"laminas/laminas-eventmanager": "^3.0",
"laminas/laminas-servicemanager": "^3.1"
},
"require-dev": {
"api-skeletons/coding-standard": "^1.0.0",
"doctrine/doctrine-orm-module": "^2.1 || ^3.0 || ^4.0 || ^5.0",
"dprevite/lint": "^1.0.0",
"laminas/laminas-i18n": "^2.7",
"laminas/laminas-test": "^3.0 || ^4.0",
"phpstan/phpstan-doctrine": "^1.2",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.2.0"
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Doctrine\\DataFixture\\": "src/"
}
},
"extra": {
"laminas": {
"component": "ApiSkeletons\\Doctrine\\DataFixture",
"config-provider": "ApiSkeletons\\Doctrine\\DataFixture\\ConfigProvider"
}
},
"scripts": {
"ci-check": [
"@lint",
"@phpcs",
"@test",
"@phpstan"
],
"lint": "lint src/",
"phpcs": "phpcs",
"phpstan": "phpstan analyze -c phpstan.neon --level=7 src/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}