OSDN Git Service

start
[php-libraries/Array2Xml.git] / composer.json
1 {
2         "name"             : "frostbane/array2xml",
3         "description"      : "PHP Array to XML.",
4         "type"             : "package",
5         "keywords"         : [
6                 "convert",
7                 "php",
8                 "array",
9                 "xml"
10         ],
11         "license"          : "BSD-4-Clause",
12         "authors"          : [
13                 {
14                         "name" : "frostbane",
15                         "email": "frostbane@programmer.net"
16                 }
17         ],
18         "minimum-stability": "dev",
19         "require"          : {
20                 "php": ">=5.4.16"
21         },
22         "require-dev"      : {
23                 "phpunit/phpunit": "^4.8.36"
24         },
25         "autoload"         : {
26                 "psr-4": {
27                         "frostbane\\": "src/"
28                 }
29         },
30         "autoload-dev"     : {
31                 "psr-4": {
32                         "frostbane\\autoloader\\test\\": "test/"
33                 }
34         }
35 }