forked from soundways/Iso7064-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 938 Bytes
/
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
{
"name": "stickybeat/iso7064-php8",
"type": "library",
"description": "An ISO 7064 check character calculator created for GRid codes",
"keywords": [
"iso",
"check",
"character",
"GRid"
],
"homepage": "https://github.com/stickybeat/Iso7064-php8",
"license": "MIT",
"authors": [
{
"name": "Örjan Classon",
"email": "[email protected]",
"homepage": "https://stickybeat.se",
"role": "Developer"
}
],
"require": {
"php": "^8.2"
},
"suggest": {
"ext-mbstring": "mbstring is required, but can be substituted with symfony/polyfill-mbstring when ext-mbstring is unavailable"
},
"autoload": {
"psr-0": {
"Iso7064\\": "src/",
"Soundways\\Iso7064\\": "src/",
"Soundways_Iso7064_": "src/"
},
"psr-4": {
"Iso7064\\": "src/",
"Soundways\\Iso7064\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5"
}
}