forked from Xajax/Xajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (31 loc) · 1.02 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
{
"name": "xajax/xajax",
"type": "library",
"description": "Xajax is an open source PHP class library for easily creating powerful PHP-driven, web-based Ajax Applications. Using Xajax, you can asynchronously call PHP functions and update the content of your your webpage without reloading the page.",
"authors": [
{"name": "Jared White"},
{"name": "J. Max Wilson"},
{"name": "Joseph Woolley"},
{"name": "Steffen Konerow"}
],
"homepage": "http://xajaxproject.org",
"license": "BSD-2-Clause",
"keywords": ["Xajax", "PHP", "Asynchronous"],
"support": {
"forum": "http://community.xajax-project.org",
"irc": "irc://irc.freenode.org/xajax",
"issues": "https://github.com/Xajax/Xajax/issues",
"source": "https://github.com/Xajax/Xajax"
},
"require": {
"php": ">=5.3.2"
},
"autoload": {
"psr-0": {
"": "xajax_core/"
},
"files": [
"xajax_core/xajax.inc.php"
]
}
}