-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 1.83 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
66
67
68
69
{
"name": "sandrokeil/simdjson-php-polyfill",
"description": "Polyfill for the PHP extension simdjson",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sandro Keil",
"homepage": "https://sandro-keil.de",
"role": "maintainer"
}
],
"support": {
"issues": "https://github.com/sandrokeil/simdjson-php-polyfill/issues",
"source": "https://github.com/sandrokeil/simdjson-php-polyfill"
},
"autoload": {
"psr-4": { "Simdjson\\": "src/" },
"files": [ "bootstrap.php" ]
},
"suggest": {
"ext-simdjson": "PHP extension for parsing gigabytes of JSON per second"
},
"autoload-dev": {
"psr-4": {
"SimdjsonTest\\Polyfill\\": "test/"
}
},
"require": {
"php": "^7.3 || ^8.0",
"ext-json": "*"
},
"require-dev": {
"phpspec/prophecy-phpunit": "^2.0",
"phpstan/phpstan": "^0.12.33",
"phpstan/phpstan-strict-rules": "^0.12.4",
"phpunit/phpunit": "^9.2.6",
"prooph/php-cs-fixer-config": "^0.3",
"roave/security-advisories": "dev-master"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"check": [
"@cs",
"@analyse",
"@test"
],
"cs": "php-cs-fixer fix src -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix src -v --diff",
"test": "vendor/bin/phpunit",
"analyse": "php vendor/bin/phpstan.phar analyse --no-interaction"
},
"config": {
"sort-packages": true,
"platform": {
}
},
"archive": {
"exclude": [
".coveralls.yml",
".github",
"build",
"phpunit.xml*",
"phpstan.xml*",
"test"
]
}
}