-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
46 lines (44 loc) · 1.25 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
{
"name": "efrane/phar-builder-bundle",
"description": "Symfony Bundle to turn (CLI) Applications into Phars",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Stefan 'eFrane' Graupner",
"email": "efrane@meanderingsoul.com"
}
],
"autoload": {
"psr-4": {
"EFrane\\PharBuilder\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EFrane\\PharBuilder\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-spl": "*",
"symfony/console": "^5.0|^6.0",
"symfony/dotenv": "^5.0|^6.0",
"symfony/framework-bundle": "^5.0|^6.0",
"symfony/http-kernel": "^5.0|^6.0",
"symfony/process": "^5.0|^6.0",
"symfony/http-client": "^5.0|^6.0",
"phar-io/version": "^3.0",
"composer/semver": "^3.2",
"webmozart/path-util": "^2.3"
},
"require-dev": {
"phpstan/phpstan": "^0.12.54",
"phpunit/phpunit": "^9.4",
"friendsofphp/php-cs-fixer": "^2.16",
"matthiasnoback/symfony-dependency-injection-test": "^4.2",
"nyholm/symfony-bundle-test": "1.8.1"
}
}