forked from phpspec/phpspec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (70 loc) · 2.14 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "phpspec/phpspec",
"description": "Specification-oriented BDD framework for PHP 7.1+",
"keywords": ["BDD", "SpecBDD", "TDD", "spec", "specification", "tests", "testing"],
"homepage": "http://phpspec.net/",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com",
"homepage": "http://everzet.com"
},
{
"name": "Marcello Duarte",
"homepage": "http://marcelloduarte.net/"
},
{
"name": "Ciaran McNulty",
"homepage": "https://ciaranmcnulty.com/"
}
],
"require": {
"php": "8.2.* || 8.3.*",
"phpspec/prophecy": "^1.16",
"phpspec/php-diff": "^1.0",
"sebastian/exporter": "^3.1 || ^4.0 || ^5.0",
"symfony/console": "^5.4 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
"symfony/process": "^5.4 || ^6.0 || ^7.0",
"symfony/finder": "^5.4 || ^6.0 || ^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"doctrine/instantiator": "^1.3 || ^2",
"ext-tokenizer": "*"
},
"require-dev": {
"behat/behat": "^3.14",
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
"phpunit/phpunit": "^9.0 || ^10.0",
"vimeo/psalm": "^4.3 || ^5.2",
"bamarni/composer-bin-plugin": "^1.8"
},
"suggest": {
"phpspec/nyan-formatters": "Adds Nyan formatters"
},
"conflict": {
"sebastian/comparator" : "<1.2.4"
},
"autoload": {
"psr-0": {
"PhpSpec": "src/"
}
},
"autoload-dev": {
"psr-0": {
"spec\\PhpSpec": "."
}
},
"bin": ["bin/phpspec"],
"extra": {
"branch-alias": {
"dev-main": "8.0.x-dev"
}
},
"config": {
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
}
}