forked from burntromi/exception-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.68 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": "fabiang/exception-generator",
"license": "MIT",
"description": "Tool for creating standard exceptions",
"type": "application",
"autoload": {
"psr-4": {
"Fabiang\\ExceptionGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fabiang\\ExceptionGenerator\\IntegrationTest\\": "tests/features/bootstrap",
"Fabiang\\ExceptionGenerator\\IntegrationTest\\Initializer\\": "tests/features/initializer"
},
"files": [
"vendor/phpunit/phpunit/src/Framework/Assert/Functions.php"
]
},
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"symfony/console": "^6.0 || ^7.0",
"symfony/event-dispatcher": "^6.0 || ^7.0",
"laminas/laminas-escaper": "^2.12",
"laminas/laminas-filter": "^2.31",
"laminas/laminas-servicemanager": "^3.0 || ^2.2",
"laminas/laminas-view": "^2.27"
},
"require-dev": {
"behat/behat": "^3.12",
"mikey179/vfsstream": "^1.6.11",
"phpunit/phpunit": "^9.6.3 || ^10.0",
"vimeo/psalm": "^5.6",
"laminas/laminas-coding-standard": "^2.5",
"phpspec/prophecy": "^1.17",
"phpspec/prophecy-phpunit": "^2.0"
},
"bin": [
"bin/exception-generator"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"phpcs": "phpcs",
"psalm": "psalm",
"phpunit": "phpunit",
"behat": "behat",
"test": [
"@psalm",
"@phpcs",
"@phpunit",
"@behat"
]
}
}