-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1009 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
33
34
35
36
37
38
39
40
41
42
{
"name": "emilmassey/twig-roman-numerals",
"type": "library",
"description": "A Twig extension for converting roman to arabic numerals and vice-versa",
"keywords": [
"twig",
"numerals"
],
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Emil Masiakowski",
"email": "[email protected]",
"homepage": "http://emil.rainbowbrains.pl"
}
],
"require": {
"php": ">=7.4",
"twig/twig": "^2.4|^3.0",
"wandersonwhcr/romans": "^1.3"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4.9|^5.0.9"
},
"autoload": {
"psr-4": {
"EmilMassey\\Twig\\RomanNumerals\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"EmilMassey\\Twig\\RomanNumerals\\Tests\\": "Tests/"
}
},
"scripts": {
"test": "vendor/bin/simple-phpunit --configuration phpunit.xml.dist --filter \"/::testIntegration( .*)?$/\" --test-suffix IntegrationTests.php Tests"
}
}