-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.06 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.06 KB
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
{
"name": "carthage-software/cel-php",
"description": "A PHP Common Expression Language Implementation",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Cel\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"Cel\\Tests\\": "tests/",
"Cel\\Benchmarks\\": "benchmarks/"
}
},
"authors": [
{
"name": "azjezz",
"email": "azjezz@carthage.software"
}
],
"require": {
"php": "~8.4 || ~8.5",
"ext-bcmath": "*",
"ext-intl": "*",
"php-standard-library/php-standard-library": "~5.0 || ~6.0",
"psr/simple-cache": "^3.0"
},
"require-dev": {
"ext-decimal": "*",
"carthage-software/mago": "^1.14.1",
"phpunit/phpunit": "^12.3",
"php-coveralls/php-coveralls": "^2.8",
"infection/infection": "^0.31.2",
"phpbench/phpbench": "^1.4",
"symfony/expression-language": "^7.3 || ^8.0"
},
"config": {
"allow-plugins": {
"carthage-software/mago": true,
"infection/extension-installer": true
}
}
}