-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 870 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 870 Bytes
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
{
"name": "noiselabs/configparser",
"type": "library",
"description": "A configuration file parser for PHP 5.3 heavily inspired by Python's configparser library",
"keywords": ["noiselabs", "configparser", "config", "parser"],
"homepage": "https://github.com/noiselabs/configparser.php",
"version": "0.2.0-BETA2",
"license": "LGPL-3.0",
"authors": [
{
"name": "Vítor Brandão",
"email": "noisebleed@noiselabs.org"
}
],
"support": {
"irc": "irc://irc.freenode.org/noiselabs",
"issues": "https://github.com/noiselabs/noiselabs-php-toolkit/issues"
},
"require": {
"php": ">=5.3.3"
},
"autoload": {
"psr-0": { "NoiseLabs\\ToolKit\\ConfigParser\\": "" }
},
"target-dir": "NoiseLabs/ToolKit/ConfigParser",
"minimum-stability": "dev"
}