-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
65 lines (65 loc) · 1.89 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
63
64
65
{
"name": "richcongress/fixture-test",
"description": "Generate random and meaningful data for objects",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "RichId",
"homepage": "https://www.rich-id.com"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/richcongress/fixture-test",
"docs": "https://github.com/richcongress/fixture-test/blob/master/README.md",
"issues": "https://github.com/richcongress/fixture-test/issues"
},
"require": {
"php": "^8.1",
"nelmio/alice": "^3.7",
"php-di/phpdoc-reader": "^2.2"
},
"require-dev": {
"richcongress/bundle-toolbox": "^2.0",
"richcongress/static-analysis": "^0.2",
"richcongress/test-tools": "^0.2",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"RichCongress\\FixtureTestBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RichCongress\\FixtureTestBundle\\Tests\\": "tests/"
}
},
"config": {
"discard-changes": true,
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-install-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks add --ignore-lock"
],
"post-update-cmd": [
"[ $COMPOSER_DEV_MODE -eq 0 ] || cghooks update"
]
},
"extra": {
"hooks": {
"pre-commit": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix"
],
"pre-push": [
"./vendor/friendsofphp/php-cs-fixer/php-cs-fixer fix --dry-run",
"./vendor/richcongress/static-analysis/bin/static_analysis"
]
}
}
}