-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.42 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
{
"name": "adriansuter/php-autoload-override",
"description": "Override global scoped fully qualified function calls inside your class methods in order to be able to mock them during testing.",
"type": "library",
"homepage": "https://adriansuter.github.io/php-autoload-override/",
"keywords": [
"php",
"testing",
"override"
],
"license": "MIT",
"authors": [
{
"name": "Adrian Suter",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/adriansuter/php-autoload-override/issues"
},
"autoload": {
"psr-4": {
"AdrianSuter\\Autoload\\Override\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"My\\Integration\\": "tests/integration/src",
"AdrianSuter\\Autoload\\Override\\": "tests/integration/src-override",
"AdrianSuter\\Autoload\\Override\\Tests\\": "tests"
},
"classmap": [
"tests/integration/src/TestClassMapOverride"
]
},
"require": {
"php": "^8.2",
"nikic/php-parser": "^5.3"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^11.5",
"phpspec/prophecy-phpunit": "^2.3",
"squizlabs/php_codesniffer": "^3.11"
},
"scripts": {
"test": [
"@phpunit",
"@phpcs",
"@phpstan"
],
"phpunit": "phpunit",
"phpcs": "phpcs",
"phpstan": "phpstan analyse src --memory-limit=-1 --xdebug"
},
"config": {
"sort-packages": true
}
}