forked from ircmaxell/php-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·43 lines (42 loc) · 1.05 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
{
"name": "ircmaxell/php-compiler",
"description": "A CFG Compiler for PHP",
"license": "MIT",
"authors": [
{
"name": "Anthony Ferrara",
"email": "[email protected]"
}
],
"require": {
"ext-ffi": "*",
"php": ">=7.4",
"ircmaxell/php-cfg": "^1.0",
"ircmaxell/php-types": "^1.0",
"ircmaxell/php-optimizer": "dev-master",
"ircmaxell/php-llvm": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"friendsofphp/php-cs-fixer": "*",
"pre/plugin": "dev-develop",
"phan/phan": "dev-master",
"yay/yay": "dev-master#08c6490364e5f4c278c04d4eb331e0128290039d as 0.7.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"PHPCompiler\\": "lib/",
"PHPCompiler\\ext\\": "ext/",
"php\\": "php/"
},
"files": [
"src/macro_functions.php"
]
},
"extra": {
"macros": [
"src/macros.yay"
]
}
}