-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
composer.json
30 lines (30 loc) · 968 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
{
"name": "clue/phar-composer",
"description": "Simple phar creation for any project managed via Composer",
"keywords": ["executable phar", "build process", "bundle dependencies", "phar", "composer"],
"homepage": "https://github.com/clue/phar-composer",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.6",
"knplabs/packagist-api": "^1.0",
"symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.0 || ^2.5",
"symfony/finder": "^6.0 || ^5.0 || ^4.0 || ^3.0 || ^2.5",
"symfony/process": "^6.0 || ^5.0 || ^4.0 || ^3.0 || ^2.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {"Clue\\PharComposer\\": "src/"}
},
"bin": ["bin/phar-composer"],
"scripts": {
"build": "@php bin/build.php"
}
}