-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (30 loc) · 817 Bytes
/
composer.json
File metadata and controls
32 lines (30 loc) · 817 Bytes
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
{
"name": "jaytaph/transphpile",
"type": "application",
"description": "PHP 7.0 to 5.6 Transpiler",
"license": "BSD-3",
"authors": [{
"name": "Joshua Thijssen",
"email": "jthijssen@noxlogic.nl"
}],
"autoload": {
"psr-4": {"Transphpile\\": "lib/Transphpile"}
},
"repositories": [{
"type": "vcs",
"url": "https://github.com/jaytaph/phar-composer"
}],
"bin": [ "bin/transphpile" ],
"require": {
"php": "^5.4|^7.0",
"nikic/php-parser": "~3.0.5",
"symfony/console": "^2.8|^3.0",
"symfony/finder": "^2.8|^3.0",
"symfony/yaml": "^2.8|^3.0"
},
"require-dev": {
"symfony/process": "^2.8|^3.0",
"phpunit/phpunit": "^4.8",
"clue/phar-composer": "dev-master"
}
}