-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2.91 KB
/
composer.json
File metadata and controls
83 lines (83 loc) · 2.91 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
{
"name": "funkyoz/json-stream",
"description": "High-performance PHP library for streaming JSON parsing with constant memory usage.",
"version": "1.2.0",
"keywords": ["php", "json", "stream", "json-stream"],
"license": "MIT",
"authors": [
{
"name": "Lorenzo Dessimoni",
"email": "lorenzo.dessimoni@gmail.com"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"laravel/pint": "^1.0",
"pestphp/pest": "^2.0 || ^3.8 || ^4.2",
"pestphp/pest-plugin-type-coverage": "^2.0 || ^3.6 || ^4.0",
"phpstan/phpstan": "^1.0 || ^2.0",
"rector/rector": "^1.0 || ^2.3",
"symfony/var-dumper": "^6.4"
},
"autoload": {
"psr-4": {
"JsonStream\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Benchmarks\\": "benchmarks/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
},
"audit": {
"ignore": {
"PKSA-z3gr-8qht-p93v": "Dev-only dependency (PHPUnit PHPT deserialization)",
"PKSA-rkkf-636k-qjb3": "Dev-only dependency (Symfony Process Windows escaping)"
}
}
},
"scripts": {
"lint": "pint --preset psr12",
"refactor": "rector",
"tests:type-coverage": "pest --type-coverage --exactly=100 --memory-limit=-1",
"tests:lint": "pint --preset psr12 --test",
"tests:unit": "pest --testsuite unit --bail",
"tests:integration": "pest --testsuite integration --bail",
"tests:types": "phpstan --memory-limit=-1",
"tests:refactor": "rector --dry-run",
"tests:coverage": "pest --coverage --min=100",
"tests:benchmark": "php benchmarks/run.php",
"tests": [
"@tests:lint",
"@tests:type-coverage",
"@tests:types",
"@tests:refactor",
"@tests:unit",
"@tests:integration"
]
},
"scripts-descriptions": {
"lint": "Fix code style issues using Laravel Pint",
"refactor": "Run automated refactoring using Rector",
"tests:type-coverage": "Verify 100% type coverage using Pest",
"tests:lint": "Check code style without fixing using Pint",
"tests:unit": "Run unit test suite with Pest",
"tests:integration": "Run integration test suite with Pest",
"tests:types": "Run static analysis using PHPStan",
"tests:refactor": "Check for refactoring opportunities using Rector (dry-run)",
"tests:coverage": "Verify 100% code coverage using Pest",
"tests:benchmark": "Run performance benchmarks",
"tests": "Run complete test suite (lint, types, coverage, unit, integration)"
}
}