-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 946 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 946 Bytes
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
{
"name": "itspire/exceptions",
"description": "Itspire Exceptions",
"type": "library",
"keywords": ["itspire", "exceptions"],
"homepage": "http://www.itspire.fr",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ryan RAJKOMAR",
"email": "ryan.rajkomar@itspire.fr"
}
],
"require": {
"php": "~8.2",
"itspire/common": "~4.0",
"symfony/finder": "~6.4",
"symfony/translation": "~6.4",
"symfony/yaml": "~6.4"
},
"autoload": {
"psr-4": {
"Itspire\\Exception\\": "src/main/php"
}
},
"require-dev": {
"ext-simplexml": "*",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "~4.0.x-dev",
"phpunit/phpunit": "~11.1"
},
"autoload-dev": {
"psr-4": {
"Itspire\\Exception\\Tests\\": "src/test/php"
}
}
}