-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 1.1 KB
/
composer.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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
{
"name": "afrihost/base-command-bundle",
"description": "Afrihost’s ‘swiss-army-knife’ extension of Symfony’s ContainerAwareCommand that defines common reusable functionality (such as logging) across commands",
"keywords": ["logging", "symfony command", "monolog", "locking"],
"homepage": "https://github.com/afrihost/BaseCommandBundle",
"type": "symfony-bundle",
"require": {
"php": "~7.1",
"symfony/symfony": "~3.0|~4.0",
"monolog/monolog": "~1.10"
},
"require-dev": {
"phpunit/phpunit": "^7"
},
"license": "MIT",
"authors": [
{
"name": "Afrihost SP (Pty) Ltd",
"email": "open-source@afrihost.com"
},
{
"name": "Brad Mostert",
"email": "open-source@afrihost.com"
}
],
"autoload": {
"psr-4": { "Afrihost\\BaseCommandBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"autoload-dev": {
"psr-4": { "Afrihost\\BaseCommandBundle\\Tests\\": "Tests/" }
},
"minimum-stability": "stable"
}