-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1 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
{
"name": "xmlsquad/xmlauthor-example-command",
"description": "Example command for managing xml files.",
"type": "library",
"license": "Apache-2.0",
"bin": [
"bin/hello-world"
],
"autoload": {
"psr-4": {
"XmlSquad\\Example\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XmlSquad\\Example\\Tests\\": "tests/"
}
},
"repositories-local": [{
"type": "path",
"url": "../xml-authoring-library",
"options": {
"symlink": false
}
}],
"repositories": [{
"type": "vcs",
"url": "https://github.com/xmlsquad/xml-authoring-library.git"
}],
"require": {
"php": ">=7.1",
"symfony/console": "^3.4",
"symfony/filesystem": "^3.4",
"symfony/yaml": "^3.4",
"xmlsquad/xml-authoring-library": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^7.1"
},
"extra": {
"branch-alias": null
}
}