This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.61 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
{
"name": "family-office/fixtures-library",
"description": "An easy-to-use library for fixture and dependency loading.",
"license": "MIT",
"type": "library",
"keywords": [
"fixture-loading",
"dependency-parsing"
],
"readme": "README.md",
"authors": [
{
"name": "Family Office",
"email": "contact@family-office.holdings",
"homepage": "https://github.com/FamilyOfficeOrg",
"role": "Manufacturer"
}
],
"homepage": "https://github.com/FamilyOfficeOrg/fixtures-library",
"support": {
"issues": "https://github.com/FamilyOfficeOrg/fixtures-library/issues"
},
"require": {
"php": "^8.0",
"thecodingmachine/safe": "^1.3"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"ergebnis/phpstan-rules": "^0.15.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^0.12.97",
"phpstan/phpstan-deprecation-rules": "^0.12.6",
"phpstan/phpstan-phpunit": "^0.12.22",
"phpstan/phpstan-strict-rules": "^0.12.11",
"phpunit/phpunit": "^9.5",
"psalm/plugin-phpunit": "^0.16.1",
"rector/rector": "^0.11.53",
"roave/no-leaks": "^1.3",
"roave/security-advisories": "dev-latest",
"sclable/xml-lint": "^0.4.0",
"symfony/thanks": "^1.2",
"symplify/easy-coding-standard": "^9.4 || ^10.0",
"thecodingmachine/phpstan-safe-rule": "^1.0",
"vimeo/psalm": "^4.9"
},
"autoload": {
"psr-4": {
"FamilyOffice\\FixturesLibrary\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"FamilyOffice\\FixturesLibrary\\Example\\": "example",
"FamilyOffice\\FixturesLibrary\\Tests\\": "tests"
}
}
}