-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.55 KB
/
composer.json
File metadata and controls
90 lines (90 loc) · 2.55 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "faslatam/jsphp",
"type": "library",
"description": "Give your PHP projects a touch of JavaScript with JSPHP! 🚀",
"homepage": "https://github.com/fadrian06/JSPHP",
"license": "MIT",
"minimum-stability": "stable",
"prefer-stable": true,
"readme": "README.md",
"authors": [
{
"email": "[email protected]",
"homepage": "https://faslatam.42web.io",
"name": "Franyer Sánchez",
"role": "FullStack Developer"
},
{
"email": "[email protected]",
"homepage": "https://freddyjs23.github.io/portafolioV2",
"name": "Freddy Solarte",
"role": "FullStack Developer"
}
],
"keywords": ["javascript", "open-source", "php", "library"],
"scripts": {
"test": "phpunit --colors=auto",
"lint": "phpstan --no-progress",
"lint:save": "phpstan --no-progress --generate-baseline=phpstan-errors.neon",
"coverage": "phpunit --colors=auto --coverage-html=.coverage"
},
"scripts-descriptions": {
"test": "Run JSPHP test suite",
"lint": "Run JSPHP codebase static analysis",
"lint:save": "Run static analysis and save errors result to ignore them in later runs",
"coverage": "Generate PHP Test code coverage report"
},
"require": {
"php": "^7.1 || ^8",
"ext-intl": "*",
"symfony/polyfill-php73": "^1.30",
"symfony/polyfill-php80": "^1.30",
"symfony/polyfill-php81": "^1.30",
"symfony/polyfill-php84": "^1.30"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.4",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.1",
"phpunit/phpunit": "^7.5",
"rector/rector": "^0.12.19",
"symfony/var-dumper": "^4.4"
},
"suggest": {
"phpstan/phpstan": "PHP Static Analyzer"
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
},
"autoload": {
"files": [
"src/constants.php",
"src/DOM/console.php",
"src/Globals/BigInt.php",
"src/Globals/Boolean.php",
"src/Globals/Date.php",
"src/Globals/JSArray.php",
"src/Globals/jsEval.php",
"src/Globals/JSFunction.php",
"src/Globals/JSObject.php",
"src/Globals/JSON.php",
"src/Globals/JSString.php",
"src/Globals/Math.php",
"src/Globals/NaN.php",
"src/Globals/Number.php",
"src/Globals/RangeError.php",
"src/Globals/Symbol.php",
"src/Operators/typeof.php",
"src/VarDate.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
}
}