-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 2.17 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
52
{
"name": "kunstmaan/utilities-bundle",
"type": "symfony-bundle",
"description": "The KunstmaanUtilitiesBundle makes your life easier by providing a couple of small but usefull helper services you can use and re-use in your applications. We already implemented an easy to use cipher service and a shell helper service for you but feel free to send in a pull request with your additions. The shell helper allows you to run apps in the background, see if a process is running and has a method to kill a running process. The cipher service allow you to encode and decode strings using the Rijndael 256 cipher",
"keywords": [ "kunstmaan", "cms", "utilities", "cipher"],
"homepage": "https://github.com/Kunstmaan/KunstmaanUtilitiesBundle",
"license": "MIT",
"authors": [
{
"name": "Kunstmaan Team",
"homepage": "http://www.kunstmaan.be/",
"email": "support@kunstmaan.be"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2|^8.0",
"defuse/php-encryption": "^2.2",
"symfony/config": "^3.4|^4.4",
"symfony/console": "^3.4|^4.4",
"symfony/dependency-injection": "^3.4|^4.4",
"symfony/filesystem": "^3.4|^4.4",
"symfony/finder": "^3.4|^4.4",
"symfony/framework-bundle": "^3.4.31|^4.4",
"symfony/http-foundation": "^3.4.35|^4.4",
"symfony/http-kernel": "^3.4|^4.4",
"symfony/property-access": "^3.4|^4.4",
"symfony/twig-bundle": "^3.4|^4.4",
"symfony/yaml": "^3.4|^4.4",
"doctrine/orm": "^2.5",
"behat/transliterator": "~1.2",
"twig/twig": "^1.36|^2.6"
},
"require-dev": {
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.1",
"symfony/phpunit-bridge": "^5.1",
"phpunit/phpunit": "^8.5",
"ekino/newrelic-bundle": "^1.4"
},
"suggest": {
"ekino/newrelic-bundle": "To use the UrlTransactionNamingStrategy"
},
"autoload": {
"psr-4": { "Kunstmaan\\UtilitiesBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "5.10-dev"
}
}
}