-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.12 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
70
71
72
73
74
75
76
77
78
{
"name": "php-ecma-intl/test",
"description": "A conformance test suite for pecl/ecma_intl",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"ecma402",
"i18n",
"icu",
"internationalization",
"intl",
"l10n",
"localization",
"test",
"unicode"
],
"require": {
"php": "^8.2",
"pestphp/pest": "^2.9"
},
"require-dev": {
"ramsey/devtools": "^2.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ecma\\Test\\": "tests/pest/"
}
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ramsey/composer-repl": true,
"phpstan/extension-installer": true,
"ergebnis/composer-normalize": true,
"captainhook/plugin-composer": true,
"ramsey/devtools": true,
"pestphp/pest-plugin": true
},
"sort-packages": true
},
"extra": {
"captainhook": {
"force-install": true
},
"ramsey/conventional-commits": {
"configFile": "conventional-commits.json"
},
"ramsey/devtools": {
"commands": {
"analyze:phpstan": {
"override": true,
"script": "echo 'Skipping PHPStan'"
},
"analyze:psalm": {
"override": true,
"script": "echo 'Skipping Psalm'"
},
"lint:syntax": {
"override": true,
"script": "parallel-lint tests"
},
"test:all": {
"script": "@dev:test:pest"
},
"test:unit": {
"override": true,
"script": "echo 'Skipping PHPUnit; run dev:test:pest instead'"
}
}
}
},
"scripts": {
"dev:test:pest": "pest --colors=always"
}
}