-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 1001 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 1001 Bytes
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": "20steps/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", "assert","20steps","ensure","defensive coding"],
"homepage": "https://github.com/20steps/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@20steps.de",
"homepage": "https://20steps.de"
}
],
"require": {
"symfony/framework-bundle": "~2.3|~3.0|~4.0",
"doctrine/annotations": "@dev"
},
"autoload": {
"psr-0": {
"twentysteps\\Commons\\EnsureBundle": ""
}
},
"target-dir": "twentysteps/Commons/EnsureBundle"
}