-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.32 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
{
"name": "rockylars/faker",
"description": "Simple class/method faking tool like Mockery and Prophecy to make tests focus on one service at a time",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rockylars",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Rocky\\Faker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rocky\\Faker\\Tests\\": "tests/",
"Rocky\\Faker\\Tests\\Support\\": "tests/_support"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"thecodingmachine/safe": ">=2.5"
},
"require-dev": {
"codeception/codeception": ">=5.1",
"codeception/module-asserts": ">=3.0",
"codeception/module-db": ">=3.1",
"codeception/module-phpbrowser": ">=3.0",
"friendsofphp/php-cs-fixer": ">=3.49",
"phpstan/phpstan": ">=1.10",
"phpstan/phpstan-deprecation-rules": ">=1.1",
"psr/clock": ">=1.0",
"psr/log": ">=3.0",
"rockylars/package-files": ">=1.0",
"spaze/phpstan-disallowed-calls": ">=3.1",
"thecodingmachine/phpstan-safe-rule": ">=1.2"
}
}