-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 931 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" : "[BB] phpagstract",
"description" : "php port of the Pagstract Templating Framework, a XML template engine",
"require" : {
"composer/installers" : "^1.0",
"php" : "^5.5 || ^7.0",
"phpunit/phpunit" : "^5",
"symfony/polyfill-mbstring" : "^1.1",
"codeclimate/php-test-reporter" : "*"
},
"license" : "Apache2.0",
"keywords" : [ "xml", "template", "engine", "pagstract", "templating", "framework" ],
"extra" : {
"branch-alias" : {
"master" : "master-dev",
"0.0.1" : "1.0.x-dev"
}
},
"autoload" : {
"psr-0" : {
"PHPagstract" : [ "./src/" ]
},
"classmap" : [ "./src/", "./tests/" ]
},
"type" : "library",
"homepage" : "https://gitlab.bjoernbartels.earth/php/phpagstract",
"authors" : [ {
"name" : "Björn Bartels",
"email" : "[email protected]",
"homepage" : "https://bjoernbartels.earth",
"role" : "Developer"
} ]
}