-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 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
{
"name": "kitpages/semaphore-bundle",
"type": "symfony-bundle",
"description": "This is a Symfony2 bundle that provides a semaphore system.",
"keywords": ["semaphore", "lock"],
"homepage": "https://github.com/kitpages/KitpagesSemaphoreBundle",
"license": "MIT",
"authors": [
{
"name": "Philippe Le Van",
"homepage": "https://twitter.com/plv"
}
],
"require": {
"php": ">=5.6",
"symfony/framework-bundle": "~3.0",
"symfony/monolog-bundle": "~3.0",
"symfony/console": "~3.0"
},
"require-dev": {
"symfony/class-loader": "~3.0",
"symfony/yaml": "~3.0",
"symfony/finder": "~3.0",
"symfony/browser-kit": "~3.0",
"symfony/process": "~3.0",
"phpunit/phpunit": "~5.0"
},
"autoload": {
"psr-0": {
"Kitpages\\SemaphoreBundle": ""
}
},
"target-dir": "Kitpages/SemaphoreBundle"
}