-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcomposer.json
52 lines (52 loc) · 1.15 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
{
"name": "jangregor/phpstan-prophecy",
"description": "Provides a phpstan/phpstan extension for phpspec/prophecy",
"license": "MIT",
"type": "phpstan-extension",
"authors": [
{
"name": "Jan Gregor Emge-Triebel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8.0",
"phpstan/phpstan": "^2.1.5"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.1.1",
"ergebnis/license": "^2.6.0",
"ergebnis/php-cs-fixer-config": "^4.0 || ^5.0 || ^6.0",
"phpspec/prophecy": "^1.7.0",
"phpspec/prophecy-phpunit": "^2.3",
"phpunit/phpunit": "^9.1.0"
},
"conflict": {
"phpspec/prophecy": "<1.17.0 || >=2.0.0",
"phpspec/prophecy-phpunit": "<2.3.0 || >=3.0.0",
"phpunit/phpunit": "<9.1.0 || >=12.0.0"
},
"autoload": {
"psr-4": {
"JanGregor\\Prophecy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JanGregor\\Prophecy\\Test\\": "test/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
}
}
}