-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
108 lines (107 loc) · 3.15 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "factorial-io/phabalicious",
"description": "A deployment helper cli",
"type": "project",
"require": {
"php": "^8.2",
"symfony/console": "^5",
"psr/log": "^1.0",
"symfony/event-dispatcher": "^5",
"symfony/http-kernel": "^5",
"symfony/dependency-injection": "^5",
"symfony/config": "^5",
"symfony/yaml": "^5",
"composer/semver": "^1.4||^3.2",
"symfony/process": "^5",
"symfony/flex": "^1.1",
"symfony/dotenv": "^5",
"ext-json": "*",
"stecman/symfony-console-completion": "^0.11.0",
"symfony/finder": "^5",
"thibaud-dauce/mattermost-php": "^1.2",
"twig/twig": "^3.0",
"ext-openssl": "*",
"jakeasmith/http_build_url": "^1.0",
"lesstif/php-jira-rest-client": "^1.35",
"graze/parallel-process": "dev-master",
"ext-posix": "*",
"twig/string-extra": "^3.7",
"defuse/php-encryption": "^2.3",
"consolidation/self-update": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"roave/security-advisories": "dev-latest" ,
"symfony/phpunit-bridge": "^5",
"phpunit/phpunit": "^9.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
"squizlabs/php_codesniffer": "^3.5",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpro/grumphp-shim": "^2",
"jangregor/phpstan-prophecy": "^1.0",
"friendsofphp/php-cs-fixer": "^3.65"
},
"autoload": {
"psr-4": {
"Phabalicious\\": "src/",
"Phabalicious\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Stephan Maximilian Huber",
"email": "[email protected]"
}
],
"license": "MIT",
"bin": [
"bin/phab"
],
"repositories": {
"graze/parallel-process": {
"type": "vcs",
"url": "https://github.com/ARY112/parallel-process.git"
}
},
"scripts": {
"auto-scripts": {
},
"build-phar": "box compile",
"install-phar": "cp ./build/phabalicious.phar /usr/local/bin/phab; chmod u+x /usr/local/bin/phab"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp-shim": true,
"symfony/flex": true
}
},
"extra": {
"phar-builder": {
"compression": "GZip",
"name": "phabalicious.phar",
"output-dir": "./build",
"entry-point": "./bin/phab",
"include": ["bin","config"],
"include-dev": false,
"skip-shebang": false,
"events": {
"build.before" : "git describe --tags > bin/version.txt",
"build.after": [
"rm bin/version.txt",
"chmod +x ../phabalicious.phar"
]
}
},
"symfony": {
"allow-contrib": "false",
"require": "5.4.*"
}
}
}