-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 830 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 830 Bytes
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
{
"name": "lupecode/php-trader-native",
"description": "An native version of the PHP Trader extension.",
"type": "library",
"license": "GPL-3.0-or-later",
"authors":[
{
"name": "Joshua Lopez",
"email": "joshua@lupecode.com",
"homepage": "https://github.com/jb-lopez",
"role": "Developer"
}
],
"version": "v2.2.0",
"require": {
"php": ">=8.2.0"
},
"require-dev": {
"ext-ds": "*",
"ext-trader": ">=0.4.1",
"phpbench/phpbench": "~1.2.14",
"phpunit/phpunit": "~10.3.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"LupeCode\\phpTraderNative\\": "source/",
"LupeCode\\phpTraderNativeTest\\": "tests/"
},
"files": [
"source/polyfill.php"
]
},
"scripts": {
"test": "phpunit"
}
}