-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
49 lines (49 loc) · 1.44 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
{
"name": "illuminated/helper-functions",
"description": "Laravel-specific and pure PHP Helper Functions.",
"keywords": ["laravel", "helpers", "functions", "background-command", "multiarray", "backtrace", "xml-parser", "xml-to-array", "array-to-xml"],
"license": "MIT",
"support": {
"issues": "https://github.com/dmitry-ivanov/laravel-helper-functions/issues",
"source": "https://github.com/dmitry-ivanov/laravel-helper-functions"
},
"authors": [{
"name": "Dmitry Ivanov",
"email": "[email protected]"
}],
"require": {
"php": "^8.1",
"ext-dom": "*",
"ext-simplexml": "*",
"illuminate/support": "^10.0",
"nesbot/carbon": "^2.67",
"symfony/filesystem": "^6.2",
"symfony/finder": "^6.2",
"symfony/process": "^6.2",
"symfony/var-dumper": "^6.2",
"spatie/array-to-xml": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"mockery/mockery": "^1.5.1",
"illuminated/testing-tools": "^10.0"
},
"autoload": {
"files": [
"src/autoload.php"
],
"psr-4": {
"Illuminated\\Helpers\\": "src/Helpers/"
}
},
"autoload-dev": {
"psr-4": {
"Illuminated\\Helpers\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}