-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 997 Bytes
/
composer.json
File metadata and controls
38 lines (38 loc) · 997 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
31
32
33
34
35
36
37
38
{
"name": "delplop/pbnbundle",
"description": "bundle de prise de notes",
"version": "2021",
"type": "symfony-bundle",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Del Plop",
"email": "plop@phpblocnote.net",
"homepage": "https://www.phpblocnote.net",
"role": "Developer"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"delplop/dbbundle": "1.0",
"delplop/userbundle": "6.1"
},
"repositories": {
"db-bundle": {
"type": "vcs",
"url": "git@github.com:DelPlop/sf-db-prefix-bundle.git"
},
"user-bundle": {
"type": "vcs",
"url": "git@github.com:DelPlop/sf-user-bundle.git"
}
},
"autoload": {
"psr-4": {
"DelPlop\\PbnBundle\\": "src/",
"DelPlopUserBundle\\": "../userbundle/src/"
}
}
}