forked from ffreitas-br/command-lock-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 809 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
{
"name": "ffreitas-br/command-lock-bundle",
"type": "symfony-bundle",
"license": "MIT",
"description": "Symfony bundle who create a lock in commands, avoiding the execution of same command simultaneously",
"keywords": ["bundle", "symfony", "command"],
"homepage": "https://github.com/ffreitas-br/command-lock-bundle",
"authors": [
{
"name": "Felipe Freitas",
"email": "[email protected]",
"homepage": "http://ffreitas.me"
}
],
"require": {
"php": ">=5.4.0",
"symfony/symfony": ">=2.1"
},
"require-dev": {
"phpunit/phpunit": "3.7@stable"
},
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"FFreitasBr\\CommandLockBundle": "src/"
}
}
}