-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "marwanalsoltany/blend",
"type": "library",
"license": "MIT",
"description": "A versatile and lightweight PHP task runner, designed with simplicity in mind.",
"keywords": [
"php",
"cli",
"task",
"runner",
"task runner"
],
"authors": [
{
"name": "Marwan Al-Soltany",
"email": "[email protected]"
}
],
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/marwanalsoltany"
}
],
"homepage": "https://github.com/MarwanAlsoltany/blend#readme",
"support": {
"docs": "https://github.com/MarwanAlsoltany/blend/blob/master/README.md",
"issues": "https://github.com/MarwanAlsoltany/blend/issues"
},
"require": {
"php" : "^7.4|^8.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"MAKS\\Blend\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MAKS\\Blend\\Tests\\": "tests"
}
},
"bin": [
"bin/blend"
],
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
},
"scripts": {
"test": "phpunit",
"compile": "php --define phar.readonly=0 ./bin/compile",
"setup": "php ./bin/setup",
"build": [
"@test",
"@compile"
],
"build-dev": [
"composer run-script build --dev --verbose",
"echo ! && echo ! Development build has been completed! && echo !"
],
"build-prod": [
"composer run-script build --quiet",
"echo ! && echo ! Production build has been completed! && echo !"
]
},
"config": {
"optimize-autoloader": true,
"sort-packages": false,
"process-timeout": 0
},
"prefer-stable": true
}