-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.58 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.58 KB
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
{
"name": "pixelbrackets/pap",
"type": "library",
"description": "PHP App Publication",
"license": "GPL-2.0-or-later",
"require": {
"php": "^7.2 || ^8.0",
"consolidation/robo": "^3.0 || ^4.0 || ^5.0",
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"jean85/pretty-package-versions": "^1.5 || ^2.0",
"natxet/cssmin": "^3.0",
"patchwork/jsqueeze": "^2.0",
"totten/lurkerlite": "^1.3",
"cweagans/composer-patches": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0 || ^9.6 || ^10.0 || ^11.0"
},
"suggest": {
"editorconfig-checker/editorconfig-checker": "Check and fix file formats based on EditorConfig",
"friendsofphp/php-cs-fixer": "Check and fix PHP code styles",
"php-parallel-lint/php-parallel-lint": "Fast syntax check for PHP files"
},
"autoload": {
"psr-4": {
"Pixelbrackets\\PhpAppPublication\\": "src/"
}
},
"bin": [
"bin/pap"
],
"scripts": {
"test": [
"phpunit tests/unit/"
],
"build:phar": "php --define phar.readonly=0 build-phar.php",
"build:binary": "./build-binary.sh",
"build:executables": "./build-executables.sh"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"extra": {
"patches": {
"consolidation/robo": {
"Symfony Console 7.4 compatibility": "https://patch-diff.githubusercontent.com/raw/consolidation/robo/pull/1185.diff"
}
}
}
}