forked from jordanbrauer/unit-converter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.14 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
{
"name": "jordanbrauer/unit-converter",
"description": "Convert standard units from one to another with this easy to use, lightweight package",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "jordanbrauer",
"email": "[email protected]"
}
],
"require": {
"php": "^7.3 || ^8.0",
"ext-bcmath": "*",
"ext-intl": "*"
},
"require-dev": {
"ergebnis/composer-normalize": "2.20.0",
"marcocesarato/php-conventional-changelog": "^1.17",
"pestphp/pest": "v1.23.1",
"symfony/var-dumper": "^3.3"
},
"autoload": {
"psr-4": {
"UnitConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"UnitConverter\\Tests\\": "tests/",
"UnitConverter\\Tests\\Integration\\": "tests/integration/",
"UnitConverter\\Tests\\Unit\\": "tests/unit/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
},
"version": "0.9.0"
}