-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
65 lines (65 loc) · 1.98 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "jaxon-php/jaxon-core",
"type": "library",
"description": "Jaxon is an open source PHP library for easily creating Ajax web applications",
"authors": [
{"name": "Thierry Feuzeu"},
{"name": "Jared White"},
{"name": "J. Max Wilson"},
{"name": "Joseph Woolley"},
{"name": "Steffen Konerow"}
],
"homepage": "https://www.jaxon-php.org",
"license": "BSD-3-Clause",
"keywords": ["Jaxon", "Xajax", "Ajax", "PHP", "Asynchronous"],
"support": {
"issues": "https://github.com/jaxon-php/jaxon-core/issues",
"source": "https://github.com/jaxon-php/jaxon-core"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"psr/log": "^1.0|^2.0|^3.0",
"psr/container": "^1.0|^2.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-server-handler": "^1.0|^2.0",
"psr/http-server-middleware": "^1.0|^2.0",
"pimple/pimple": "^3.0",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"jaxon-php/jaxon-utils": "dev-main"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.5",
"phpunit/phpcov": "^8.2",
"jaxon-php/jaxon-dialogs": "dev-main",
"jaxon-php/jaxon-upload": "dev-main",
"lagdo/twitter-feed": "dev-test"
},
"autoload": {
"psr-4": {
"Jaxon\\": "src/"
},
"files": [
"src/start.php"
]
},
"autoload-dev": {
"psr-4": {
"Jaxon\\Tests\\": "tests/",
"Jaxon\\Tests\\App\\": "tests/src/",
"Jaxon\\Tests\\Ns\\": "tests/src/Ns/"
}
},
"scripts": {
"test": [
"@clearCache",
"@putenv XDEBUG_MODE=coverage",
"vendor/bin/phpunit"
],
"clearCache": "rm -rf cache/*"
},
"minimum-stability": "dev",
"prefer-stable": true
}