forked from joostdecock/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 920 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
31
32
33
{
"name": "freesewing/core",
"description": "Freesewing is an open source platform for made-to-measure sewing patterns",
"license": "GPL-3.0-or-later",
"homepage": "https://freesewing.org/",
"authors": [
{
"name": "Joost De Cock",
"email": "[email protected]",
"homepage": "http://joost.decock.org/",
"role": "Developer"
}],
"require": {
"symfony/translation": "3.1.*",
"symfony/yaml": "3.1.*",
"freesewing/bail": "^0.2.0",
"kint-php/kint": "^2.2"
},
"require-dev": {
"phpunit/phpunit": "5.5.*"
},
"autoload": {
"psr-4": {
"Freesewing\\": "src/",
"Freesewing\\Channels\\": "channels/",
"Freesewing\\Themes\\": "themes/",
"Freesewing\\Patterns\\": "patterns/"
}
},
"scripts": {
"test": "phpunit"
}
}