-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.62 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.62 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
48
49
50
51
52
53
54
55
{
"name": "datalinx/php-utils",
"description": "Collection of common helper functions organized into fluent classes",
"keywords": [
"php",
"helpers",
"utilities"
],
"homepage": "https://github.com/datalinx/php-utils",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"DataLinx\\PhpUtils\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DataLinx\\PhpUtils\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "DataLinx",
"email": "info@datalinx.si"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-intl": "*",
"ext-mbstring": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"giggsey/libphonenumber-for-php": "^8.13",
"nesbot/carbon": "^2.71",
"phpunit/phpunit": "^9.5.26",
"picqer/php-barcode-generator": "^2.2.4"
},
"suggest": {
"picqer/php-barcode-generator": "Required to use FluentBarcode",
"ext-gd": "For FluentBarcode JPG and PNG generators, GD or Imagick is required",
"ext-imagick": "For FluentBarcode JPG and PNG generators, GD or Imagick is required",
"nesbot/carbon": "Required for the Carbon date/time helpers",
"giggsey/libphonenumber-for-php": "Required for the phone number helper"
},
"scripts": {
"test": "vendor/bin/phpunit",
"format": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php --allow-risky=yes"
},
"config": {
"sort-packages": true
}
}