-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
32 lines (32 loc) · 942 Bytes
/
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
{
"name": "uuf6429/expression-language-arrowfunc",
"type": "library",
"description": "Arrow function support in Symfony Expression Language",
"keywords": ["symfony", "expression", "language", "arrow", "function", "uuf6429"],
"homepage": "http://github.com/uuf6429/expression-language-arrowfunc",
"license": "MIT",
"authors": [
{
"name": "Christian Sciberras",
"homepage": "http://christian.sciberras.me"
}
],
"require": {
"php": "^7.1",
"symfony/expression-language": "^4"
},
"require-dev": {
"phpunit/phpunit": "^7 || ^8",
"friendsofphp/php-cs-fixer": "^2"
},
"autoload": {
"psr-4": {
"uuf6429\\ExpressionLanguage\\": "src/ExpressionLanguage"
}
},
"autoload-dev": {
"psr-4": {
"uuf6429\\ExpressionLanguage\\Tests\\": "test/ExpressionLanguage"
}
}
}