generated from ghostwriter/wip
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
102 lines (102 loc) · 3.54 KB
/
composer.json
File metadata and controls
102 lines (102 loc) · 3.54 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "ghostwriter/collection",
"description": "Provides a Collection implementation for PHP",
"license": "BSD-3-Clause",
"type": "library",
"keywords": [
"ghostwriter",
"collection"
],
"authors": [
{
"name": "Nathanael Esayeas",
"email": "nathanael.esayeas@protonmail.com",
"homepage": "https://github.com/ghostwriter",
"role": "Developer"
}
],
"homepage": "https://github.com/ghostwriter/collection",
"support": {
"issues": "https://github.com/ghostwriter/collection/issues",
"source": "https://github.com/ghostwriter/collection",
"rss": "https://github.com/ghostwriter/collection/releases.atom",
"security": "https://github.com/ghostwriter/collection/security/advisories/new"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/ghostwriter"
}
],
"_comment": [
"#BlackLivesMatter",
"#FreePalestine",
"#StandWithUkraine",
"#StopGenocide"
],
"require": {
"php": "~8.4.0 || ~8.5.0",
"ext-mbstring": "*"
},
"require-dev": {
"ext-xdebug": "*",
"ghostwriter/coding-standard": "dev-main",
"mockery/mockery": "^1.6.12",
"phpunit/phpunit": "^13.0.5",
"symfony/var-dumper": "^8.0.6"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Ghostwriter\\Collection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"": "tests/Fixture/",
"Tests\\": "tests/"
},
"files": [
"tests/bootstrap.php"
],
"exclude-from-classmap": ["/tests/"]
},
"config": {
"allow-plugins": {
"ghostwriter/coding-standard": true,
"infection/extension-installer": true
},
"bump-after-update": false,
"classmap-authoritative": false,
"discard-changes": true,
"optimize-autoloader": true,
"platform": {
"php": "8.4.999"
},
"preferred-install": "dist",
"prepend-autoloader": true,
"process-timeout": 5000,
"sort-packages": true,
"use-parent-dir": false
},
"scripts": {
"cache:clear": "rm -rf ./.cache/*",
"check": ["@cache:clear", "tools/phar/composer validate", "@test"],
"docker": ["@docker:build", "@docker:run"],
"docker:build": "docker buildx build --pull --tag workspace .",
"docker:run": "docker run -v $(PWD):/github/workspace -w=/github/workspace -e GITHUB_DEBUG=1 -e GITHUB_WORKSPACE=/github/workspace -e GITHUB_TOKEN=github-token -e SIGNING_SECRET_KEY=secret-key workspace",
"git:submodule:update": "git submodule update --depth=1 --init --recursive --recommend-shallow --remote",
"infection": ["@xdebug", "tools/phar/infection --min-covered-msi=0 --min-msi=0 --show-mutations --threads=max"],
"phpbench": "tools/phar/phpbench run --report='extends:aggregate,cols:[benchmark,subject,revs,its,mem_peak,mode,rstdev]' --time-unit=milliseconds ./tests/Benchmark",
"phpunit": ["@xdebug", "vendor/bin/phpunit --do-not-cache-result --colors=always"],
"test": ["@phpunit", "@infection"],
"unused": "tools/phar/composer-unused --no-interaction --ansi",
"xdebug": "@putenv XDEBUG_MODE=coverage"
},
"extra": {
"thanks": {
"name": "ghostwriter/collection",
"url": "https://github.com/ghostwriter/collection"
}
}
}