-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
28 lines (28 loc) · 962 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
{
"name": "timephp/urlparser",
"type": "library",
"license": "GPL-3.0-or-later",
"description": "Little libe to manipulate url params from GET or POST requests",
"homepage": "https://github.com/TimePHP-org/TimePHP-UrlParser",
"keywords": ["TimePHP", "Framework", "PHP", "MVC"],
"minimum-stability": "stable",
"readme": "https://github.com/TimePHP-org/TimePHP-UrlParser/blob/master/README.md",
"support": {
"email": "[email protected]",
"docs": "https://timephp-org.github.io/TimePHP-Docs/#/",
"issues": "https://github.com/TimePHP-org/TimePHP-UrlParser/issues",
"source": "https://github.com/TimePHP-org/TimePHP-UrlParser/releases"
},
"authors": [
{
"name": "Robin B",
"email": "[email protected]",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"TimePHP\\UrlParser\\": "src/"
}
}
}