-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (28 loc) · 882 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
{
"name": "matthimatiker/command-locking-bundle",
"description": "Adds an optional locking feature to all console commands that can be used to prevent parallel execution.",
"keywords": ["symfony", "console", "command", "locking", "lock"],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Matthias Molitor",
"email": "matthias@matthimatiker.de",
"homepage": "https://github.com/Matthimatiker"
}
],
"require": {
"php": "^5.5.9 | ^7.0.0",
"symfony/symfony": "^2.6.0 | ^3.0.0"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"satooshi/php-coveralls": "^1.0.0",
"webfactory/symfony-application-tests": "^0.5.0"
},
"autoload": {
"psr-4": {
"Matthimatiker\\CommandLockingBundle\\": "."
}
}
}