-
Notifications
You must be signed in to change notification settings - Fork 30
/
composer.json
52 lines (52 loc) · 1.29 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",
"type": "phpstan-extension",
"description": "Provides a phpstan/phpstan extension for phpspec/prophecy",
"license": "MIT",
"authors": [
{
"name": "Jan Gregor Emge-Triebel",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"phpstan/phpstan": "^0.12.0"
},
"conflict": {
"phpspec/prophecy": "<1.7.0,>=2.0.0",
"phpunit/phpunit": "<6.0.0,>=10.0.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.1.1",
"ergebnis/license": "^1.0.0",
"ergebnis/php-cs-fixer-config": "~1.1.2",
"phpspec/prophecy": "^1.7.0",
"phpunit/phpunit": "^6.0.0 || ^7.0.0"
},
"config": {
"sort-packages": true
},
"extra": {
"phpstan": {
"includes": [
"extension.neon"
]
},
"violinist": {
"allow_updates_beyond_constraint": 0,
"one_pull_request_per_package": 1,
"update_with_dependencies": 1
}
},
"autoload": {
"psr-4": {
"JanGregor\\Prophecy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JanGregor\\Prophecy\\Test\\": "test/"
}
}
}