-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.41 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
{
"name": "richarddobron/bigpipe",
"description": "This library currently implements small part of Facebook BigPipe so far, but the advantage is to efficiently insert/replace content and work with the DOM. It is also possible to easily call JavaScript modules from PHP.",
"type": "library",
"keywords": [
"bigpipe",
"xhr",
"html",
"dom",
"async",
"javascript"
],
"require": {
"php": "^8.0",
"ext-json": "*"
},
"license": "MIT",
"authors": [
{
"name": "Richard Dobroň"
}
],
"archive": {
"exclude": ["/demo-app"]
},
"minimum-stability": "dev",
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"dobron\\BigPipe\\": "src"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": ">=v3.0.0",
"phpunit/phpunit": ">=7.5.0"
},
"scripts": {
"post-merge": "composer install",
"check-style": "php-cs-fixer fix --using-cache=no --diff --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --ansi",
"test": "vendor/bin/phpunit --colors=always --testdox"
},
"scripts-descriptions": {
"check-style": "Run style checks (only dry run - no fixing!).",
"fix-style": "Run style checks and fix violations.",
"test": "Run all tests."
}
}