-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.32 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
{
"name": "labrodev/php-mixed-converter",
"description": "PHP utility class that provides methods to convert mixed values to strings, ints or floats",
"keywords": [
"labrodev",
"php",
"mixed-converter",
"mixed",
"helper",
"utility",
"static",
"type-hint",
"strict_types"
],
"type": "library",
"homepage": "https://github.com/labrodev/php-mixed-converter",
"license": "MIT",
"authors": [
{
"name": "Labro Dev",
"email": "[email protected]",
"role": "Development Team"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/labrodev/php-mixed-converter/issues",
"source": "https://github.com/labrodev/php-mixed-converter"
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Labrodev\\PhpMixedConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Labrodev\\PhpMixedConverter\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}