-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathcomposer.json
51 lines (51 loc) · 1.11 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
47
48
49
50
51
{
"name": "yay/yay",
"description": "A high level PHP Pre-Processor",
"license": "MIT",
"keywords": [
"pre-processor",
"language",
"syntax"
],
"authors": [
{
"name": "Márcio Almada",
"email": "[email protected]",
"homepage": "https://github.com/marcioAlmada"
}
],
"require": {
"php": "7.*",
"ext-mbstring": "*",
"ext-tokenizer": "*",
"nikic/php-parser": "^2.1|^3.0|^4.0",
"docopt/docopt": "^1.0"
},
"autoload": {
"files": [
"src/parsers.php",
"src/parsers_internal.php",
"src/expanders.php"
],
"psr-4": {
"Yay\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Yay\\": "tests/"
},
"files": [
"tests/fixtures/parsers.php",
"tests/fixtures/expanders.php"
]
},
"bin": [
"bin/yay",
"bin/yay-pretty"
],
"require-dev": {
"phpunit/phpunit": "~6.5",
"phpbench/phpbench": "@dev"
}
}