forked from 20steps/commons-ensure-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 1021 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": "campanda/commons-ensure-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle with static helper functions for checking coding pre-/post-conditions",
"keywords": ["symfony","sf2","symfony2", "sf3", "symfony3", "sf4", "symfony4", "assert","Campanda","ensure","defensive coding"],
"homepage": "https://github.com/campanda/commons-ensure-bundle",
"license": "LGPL-3.0+",
"authors": [
{
"name": "Marc Ewert",
"email": "marc.ewert@20steps.de",
"homepage": "https://20steps.de"
},
{
"name": "Helmut Hoffer von Ankershoffen",
"email": "hhva@campanda.com",
"homepage": "https://campanda.com"
}
],
"require": {
"symfony/framework-bundle": "~2.3|~3.0|~4.0",
"doctrine/annotations": "@dev"
},
"autoload": {
"psr-0": {
"Campanda\\Commons\\EnsureBundle": ""
}
},
"target-dir": "campanda/Commons/EnsureBundle"
}