-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.37 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "notepad/notepad",
"description": "Notepad is an online notepad used to stored important information and get it from another computers.",
"license": "GPL-3.0",
"type": "project",
"keywords": [
"Notepad",
"Nicolas GILLE"
],
"authors": [
{
"name": "Nicolas GILLE",
"email": "nic.gille@gmail.com",
"homepage": "http://www.nicolas-gille.fr",
"role": "Lead Developer"
}
],
"support": {
"email": "nic.gille@gmail.com",
"issues": "https://github.com/Kero76/notepad/issues",
"source": "https://github.com/Kero76/notepad"
},
"require": {
"silex/silex": "^2.1.0",
"symfony/form": "^3.3",
"symfony/security": "^3.3",
"symfony/config": "^3.3",
"symfony/translation": "^3.3",
"symfony/asset": "^3.3",
"symfony/validator": "^3.3",
"symfony/yaml": "^3.3",
"symfony/twig-bridge": "^3.3",
"twig/twig": "^2.4.3",
"twig/extensions": "^1.5",
"doctrine/dbal": "^2.5",
"twbs/bootstrap": "^3.3",
"fortawesome/font-awesome": "^4.7",
"components/flag-icon-css": "^2.8",
"components/jquery": "^3.2",
"tinymce/tinymce": "^4.6",
"nicolas-gille/gravatar-lib": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
},
"autoload": {
"psr-4": {
"Notepad\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NotepadTest\\": "tests/"
}
}
}