-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
35 lines (35 loc) · 961 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
{
"name": "rosasurfer/mt4-php-tools",
"description": "PHP tools for the MetaTrader4 MQL framework",
"type": "project",
"license": "WTFPL",
"authors": [{
"name": "Peter Walther",
"email": "[email protected]"
}],
"config": {
"platform": {
"php": "7.4"
},
"optimize-autoloader": true
},
"repositories": [
{ "type": "vcs", "url": "https://github.com/rosasurfer/ministruts" }
],
"require": {
"php": "7.4 - 8",
"ext-bcmath": "*",
"ext-sqlite3": "*",
"rosasurfer/ministruts": "^0.11@dev"
},
"require-dev": {
"phpstan/phpstan": "^1.11"
},
"autoload": {
"classmap": ["app/"],
"files": ["app/functions.php"]
},
"scripts": {
"post-install-cmd": "bash bin/git/check-setup.sh post-checkout post-merge"
}
}