forked from kunicmarko20/ColorPickerBundle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.16 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.16 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
37
38
39
40
{
"name": "kunicmarko/color-picker-bundle",
"description": "This is a Symfony Bundle that adds Color Picker Form Type.",
"type": "symfony-bundle",
"authors": [
{
"name": "Marko Kunic",
"email": "kunicmarko20@gmail.com",
"homepage": "http://www.kunicmarko.ml"
}
],
"keywords": ["color picker","symfony color picker", "symfony", "bundle","symfony color picker form", "form"],
"homepage": "https://github.com/kunicmarko20/ColorPickerBundle",
"license": "MIT",
"require": {
"php": ">=7.0",
"symfony/dependency-injection": "^5.4",
"symfony/form": "^5.4",
"symfony/framework-bundle": "5.4"
},
"require-dev": {
"symfony/phpunit-bridge": "~2.7",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": { "KunicMarko\\ColorPickerBundle\\": "" },
"exclude-from-classmap": [
"Tests/"
]
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}