-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.01 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.01 KB
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
{
"name": "xcy7e/php-toolbox",
"description": "PHP toolbox library, containing useful everyday utilities.",
"type": "library",
"license": "GPL-3.0",
"version": "1.5.0",
"minimum-stability": "stable",
"authors": [
{
"name": "Jonathan Riedmair",
"email": "jonathan@xcy7e.pro"
}
],
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-iconv": "*",
"ext-imagick": "*",
"ext-intl": "*",
"ext-openssl": "*",
"symfony/http-foundation": "6.4 - 7.2",
"symfony/mime": "6.4 - 7.2",
"symfony/filesystem": "6.4 - 7.2",
"symfony/uid": "6.4 - 7.2",
"imagine/imagine": "^1.5",
"azuyalabs/yasumi": "^2.8"
},
"require-dev": {
"ext-gd": "*",
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Xcy7e\\PhpToolbox\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Xcy7e\\PhpToolbox\\Tests\\": "tests/"
}
},
"scripts": {
"post-create-project-cmd": [
"phpunit -c tests/phpunit.dist.xml tests/"
]
}
}