-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
36 lines (36 loc) · 1.06 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
{
"name": "lechimp-p/dicto.php",
"description": "An implementation of the dicto-tool (scg.unibe.ch/dicto) in and for PHP.",
"keywords": [],
"type": "script",
"license": "GPL-3.0-or-later",
"homepage": "https://github.com/lechimp-p/dicto.php",
"authors": [
{
"name": "Richard Klees",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/lechimp-p/dicto.php/internal/issues",
"source": "https://github.com/lechimp-p/dicto.php"
},
"autoload": {
"psr-4" : { "Lechimp\\Dicto\\" : "src" }
},
"require": {
"nikic/php-parser" : "^4.10",
"pimple/pimple" : "3.0.*",
"doctrine/dbal" : "^3.1",
"symfony/config" : "^5.2",
"symfony/console" : "^5.2",
"symfony/yaml" : "^5.2",
"psr/log" : "1.0.0",
"lechimp-p/flightcontrol": "^1.0",
"lechimp-p/regexp": "^2.0"
},
"require-dev": {
"phpunit/phpunit" : "^9.5",
"friendsofphp/php-cs-fixer": "^3.0"
}
}