+5
.gitignore
+5
.gitignore
+21
.tangled/workflows/deadnix.yml
+21
.tangled/workflows/deadnix.yml
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
when:
6
+
- event: ["push", "pull_request"]
7
+
branch: ["main"]
8
+
9
+
engine: nixery
10
+
11
+
dependencies:
12
+
nixpkgs:
13
+
- ansifilter
14
+
- deadnix
15
+
16
+
steps:
17
+
- name: Check for unused nix bindings
18
+
command: |
19
+
set -eo pipefail
20
+
21
+
deadnix --exclude **/npins --no-underscore --no-lambda-pattern-names --fail | ansifilter
+46
-6
.tangled/workflows/github.yml
+46
-6
.tangled/workflows/github.yml
···
8
8
9
9
engine: nixery
10
10
11
+
dependencies:
12
+
nixpkgs:
13
+
- git
14
+
- openssh
15
+
11
16
steps:
12
17
- name: Write SSH Key
13
18
command: |
14
-
echo $GITHUB_SSH_KEY > ssh_key
15
-
chmod 600 ssh_key
16
-
- name: Push to GitHub
19
+
echo "$KEY_SSH_GITHUB" > /tmp/key-ssh-github
20
+
chmod 600 /tmp/key-ssh-github
21
+
- name: Add base system files
17
22
command: |
18
-
export GIT_SSH_COMMAND="ssh -i $(realpath ./ssh_key) -o StrictHostKeyChecking=no"
19
-
git remote add github git@github.com:freshlybakedca.ke/Patisserie
23
+
# Avoid missing user with UID 0 error on ssh...
24
+
echo "root:x:0:0:System administrator:/root:/run/current-system/sw/bin/bash" >> /etc/passwd
25
+
26
+
# Turn off SSH host key checking
27
+
echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
28
+
echo "UserKnownHostsFile /dev/null" >> /etc/ssh/ssh_config
29
+
30
+
echo "Host github.com" >> /etc/ssh/ssh_config
31
+
echo " User git" >> /etc/ssh/ssh_config
32
+
echo " IdentityFile /tmp/key-ssh-github" >> /etc/ssh/ssh_config
33
+
- name: Push * to GitHub
34
+
command: |
35
+
git remote add github git@github.com:FreshlyBakedCake/Patisserie.git
20
36
git fetch --unshallow origin
21
37
git fetch github
22
-
git push tangled HEAD
38
+
git push github HEAD:refs/heads/release
39
+
- name: Write SSH Key
40
+
command: |
41
+
echo "$KEY_SSH_GITHUB_PACKETMIX" > /tmp/key-ssh-github
42
+
chmod 600 /tmp/key-ssh-github
43
+
- name: Push packetmix to GitHub
44
+
command: |
45
+
cd ..
46
+
git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/packetmix.git
47
+
cd packetmix
48
+
git remote add github git@github.com:FreshlyBakedCake/PacketMix.git
49
+
git fetch github
50
+
git push github origin/release:refs/heads/release
51
+
- name: Write SSH Key
52
+
command: |
53
+
echo "$KEY_SSH_GITHUB_SPRINKLES" > /tmp/key-ssh-github
54
+
chmod 600 /tmp/key-ssh-github
55
+
- name: Push sprinkles to GitHub
56
+
command: |
57
+
cd ..
58
+
git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/sprinkles.git
59
+
cd sprinkles
60
+
git remote add github git@github.com:FreshlyBakedCake/Sprinkles.git
61
+
git fetch github
62
+
git push github origin/release:refs/heads/release
+40
-60
.tangled/workflows/packetmix-build.yml
+40
-60
.tangled/workflows/packetmix-build.yml
···
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
4
when:
5
-
- event: ["push", "pull_request"]
5
+
- event: ["pull_request"]
6
6
branch: ["main"]
7
7
8
8
engine: nixery
···
21
21
- name: Add base system files
22
22
command: |
23
23
# Let us SSH to midnight by name
24
-
echo "192.168.0.6 midnight" >> /etc/hosts
24
+
echo "192.168.1.2 midnight" >> /etc/hosts
25
25
26
26
# Avoid missing user with UID 0 error on ssh...
27
27
echo "root:x:0:0:System administrator:/root:/run/current-system/sw/bin/bash" >> /etc/passwd
···
42
42
set +e
43
43
set -o pipefail
44
44
45
-
eval_out=$(nix eval \
46
-
-f ./packetmix/nilla.nix packages.allNixOSSystems.result.x86_64-linux.drvPath \
47
-
--show-trace --raw \
48
-
2>&1 >/tmp/systems-drv-path | tee /dev/stderr)
49
-
eval_status=$?
45
+
mkdir -p /tmp/systems-drv-paths
50
46
51
-
if [ $eval_status -ne 0 ]; then
52
-
echo "Evaluating your configuration failed with exit code $eval_status"
53
-
echo "Please fix this and squash into your existing commits"
54
-
exit $eval_status
55
-
fi
56
-
57
-
eval_warns=$(echo "$eval_out" | grep "evaluation warning:" || true)
47
+
systems=$(nix eval \
48
+
--expr 'builtins.concatStringsSep "\n" (builtins.attrNames (import ./ci.nix).systems.nixos)' \
49
+
--impure \
50
+
--show-trace --raw)
58
51
59
-
if [ -n "$eval_warns" ]; then
60
-
echo "There were some warnings while evaluating your systems:"
61
-
echo "$eval_warns"
62
-
echo "Please fix these and squash into your existing commits"
63
-
exit 1
64
-
fi
65
-
- name: Evaluate all homes
66
-
command: |
67
-
set +e
68
-
set -o pipefail
52
+
for system in $systems; do
53
+
echo "Evaluating system $system"
69
54
70
-
eval_out=$(nix eval \
71
-
-f ./packetmix/nilla.nix packages.allHomes.result.x86_64-linux.drvPath \
72
-
--show-trace --raw \
73
-
2>&1 >/tmp/homes-drv-path | tee /dev/stderr)
74
-
eval_status=$?
55
+
eval_out=$(nix eval \
56
+
-f ./ci.nix "systems.nixos.$system.result.config.system.build.toplevel.drvPath" \
57
+
--show-trace --raw \
58
+
2>&1 >"/tmp/systems-drv-paths/$system" | tee /dev/stderr)
59
+
eval_status=$?
75
60
76
-
if [ $eval_status -ne 0 ]; then
77
-
echo "Evaluating your configuration failed with exit code $eval_status"
78
-
echo "Please fix this and squash into your existing commits"
79
-
exit $eval_status
80
-
fi
61
+
if [ $eval_status -ne 0 ]; then
62
+
echo "Evaluating the system '$system' failed with exit code $eval_status"
63
+
echo "Please fix this and squash into your existing commits"
64
+
exit $eval_status
65
+
fi
81
66
82
-
eval_warns=$(echo "$eval_out" | grep "evaluation warning:" || true)
67
+
eval_warns=$(echo "$eval_out" | grep "evaluation warning:" || true)
83
68
84
-
if [ -n "$eval_warns" ]; then
85
-
echo "There were some warnings while evaluating your homes:"
86
-
echo "$eval_warns"
87
-
echo "Please fix these and squash into your existing commits"
88
-
exit 1
89
-
fi
69
+
if [ -n "$eval_warns" ]; then
70
+
echo "There were some warnings while evaluating the system '$system':"
71
+
echo "$eval_warns"
72
+
echo "Please fix these and squash into your existing commits"
73
+
exit 1
74
+
fi
75
+
done
90
76
- name: Build all systems
91
77
command: |
92
78
set -e
93
-
nix-copy-closure \
94
-
--to 'midnight' \
95
-
"$(cat /tmp/systems-drv-path)"
96
-
nix build \
97
-
"$(cat /tmp/systems-drv-path)"'^*' \
98
-
--store 'ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build' \
99
-
--eval-store auto \
100
-
--show-trace --print-out-paths
101
-
- name: Build all homes
102
-
command: |
103
-
set -e
104
-
nix-copy-closure \
105
-
--to 'midnight' \
106
-
"$(cat /tmp/homes-drv-path)"
107
-
nix build \
108
-
"$(cat /tmp/homes-drv-path)"'^*' \
109
-
--store 'ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build' \
110
-
--eval-store auto \
111
-
--show-trace --print-out-paths
79
+
80
+
for derivation_path in /tmp/systems-drv-paths/*; do
81
+
echo "Building system $(basename $derivation_path)"
82
+
83
+
nix-copy-closure \
84
+
--to 'midnight' \
85
+
"$(cat $derivation_path)"
86
+
nix build \
87
+
"$(cat $derivation_path)"'^*' \
88
+
--store 'ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build' \
89
+
--eval-store auto \
90
+
--show-trace --print-out-paths
91
+
done
+103
.tangled/workflows/packetmix-release.yml
+103
.tangled/workflows/packetmix-release.yml
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
when:
5
+
- event: ["push"]
6
+
branch: ["main"]
7
+
8
+
engine: nixery
9
+
10
+
dependencies:
11
+
nixpkgs:
12
+
- lix
13
+
- gnugrep
14
+
- openssh
15
+
16
+
steps:
17
+
- name: Get remote builds SSH key
18
+
command: |
19
+
echo "$KEY_SSH_REMOTE_BUILD" > /tmp/key-ssh-remote-build
20
+
chmod 600 /tmp/key-ssh-remote-build
21
+
- name: Get release push SSH key
22
+
command: |
23
+
echo "$KEY_SSH_RELEASE_PUSH" > /tmp/key-ssh-release-push
24
+
chmod 600 /tmp/key-ssh-release-push
25
+
- name: Add base system files
26
+
command: |
27
+
# Let us SSH to midnight by name
28
+
echo "192.168.1.2 midnight" >> /etc/hosts
29
+
30
+
# Avoid missing user with UID 0 error on ssh...
31
+
echo "root:x:0:0:System administrator:/root:/run/current-system/sw/bin/bash" >> /etc/passwd
32
+
33
+
# Turn off SSH host key checking
34
+
echo "StrictHostKeyChecking no" >> /etc/ssh/ssh_config
35
+
echo "UserKnownHostsFile /dev/null" >> /etc/ssh/ssh_config
36
+
37
+
echo "Host midnight" >> /etc/ssh/ssh_config
38
+
echo " User remoteBuilds" >> /etc/ssh/ssh_config
39
+
echo " IdentityFile /tmp/key-ssh-remote-build" >> /etc/ssh/ssh_config
40
+
echo "Host tangled.org" >> /etc/ssh/ssh_config
41
+
echo " User git" >> /etc/ssh/ssh_config
42
+
echo " IdentityFile /tmp/key-ssh-release-push" >> /etc/ssh/ssh_config
43
+
44
+
echo "extra-experimental-features = nix-command" >> /etc/nix/nix.conf
45
+
echo "max-jobs = 0" >> /etc/nix/nix.conf
46
+
echo "builders = ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build x86_64-linux" >> /etc/nix/nix.conf
47
+
- name: Evaluate all systems
48
+
command: |
49
+
set +e
50
+
set -o pipefail
51
+
52
+
mkdir -p /tmp/systems-drv-paths
53
+
54
+
systems=$(nix eval \
55
+
--expr 'builtins.concatStringsSep "\n" (builtins.attrNames (import ./ci.nix).systems.nixos)' \
56
+
--impure \
57
+
--show-trace --raw)
58
+
59
+
for system in $systems; do
60
+
echo "Evaluating system $system"
61
+
62
+
eval_out=$(nix eval \
63
+
-f ./ci.nix "systems.nixos.$system.result.config.system.build.toplevel.drvPath" \
64
+
--show-trace --raw \
65
+
2>&1 >"/tmp/systems-drv-paths/$system" | tee /dev/stderr)
66
+
eval_status=$?
67
+
68
+
if [ $eval_status -ne 0 ]; then
69
+
echo "Evaluating the system '$system' failed with exit code $eval_status"
70
+
echo "Please fix this and squash into your existing commits"
71
+
exit $eval_status
72
+
fi
73
+
74
+
eval_warns=$(echo "$eval_out" | grep "evaluation warning:" || true)
75
+
76
+
if [ -n "$eval_warns" ]; then
77
+
echo "There were some warnings while evaluating the system '$system':"
78
+
echo "$eval_warns"
79
+
echo "Please fix these and squash into your existing commits"
80
+
exit 1
81
+
fi
82
+
done
83
+
- name: Build all systems
84
+
command: |
85
+
set -e
86
+
87
+
for derivation_path in /tmp/systems-drv-paths/*; do
88
+
echo "Building system $(basename $derivation_path)"
89
+
90
+
nix-copy-closure \
91
+
--to 'midnight' \
92
+
"$(cat $derivation_path)"
93
+
nix build \
94
+
"$(cat $derivation_path)"'^*' \
95
+
--store 'ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build' \
96
+
--eval-store auto \
97
+
--show-trace --print-out-paths
98
+
done
99
+
- name: Push to release
100
+
command: |
101
+
git fetch --unshallow
102
+
git remote set-url --push origin git@tangled.org:freshlybakedca.ke/patisserie
103
+
git push origin HEAD:refs/heads/release
+2
-2
.tangled/workflows/packetmix-treefmt.yaml
+2
-2
.tangled/workflows/packetmix-treefmt.yaml
···
21
21
- name: Add base system files
22
22
command: |
23
23
# Let us SSH to midnight by name
24
-
echo "192.168.0.6 midnight" >> /etc/hosts
24
+
echo "192.168.1.2 midnight" >> /etc/hosts
25
25
26
26
# Avoid missing user with UID 0 error on ssh...
27
27
echo "root:x:0:0:System administrator:/root:/run/current-system/sw/bin/bash" >> /etc/passwd
···
42
42
set -e
43
43
44
44
treefmt=$(nix build \
45
-
-f ./packetmix/nilla.nix packages.treefmt.result.x86_64-linux \
45
+
-f ./ci.nix packages.treefmt.result.x86_64-linux \
46
46
--store 'ssh-ng://remoteBuilds@midnight?ssh-key=/tmp/key-ssh-remote-build' \
47
47
--eval-store auto \
48
48
--show-trace --print-out-paths)
-232
LICENSES/GPL-3.0-or-later.txt
-232
LICENSES/GPL-3.0-or-later.txt
···
1
-
GNU GENERAL PUBLIC LICENSE
2
-
Version 3, 29 June 2007
3
-
4
-
Copyright ยฉ 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
-
6
-
Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
7
-
8
-
Preamble
9
-
10
-
The GNU General Public License is a free, copyleft license for software and other kinds of works.
11
-
12
-
The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.
13
-
14
-
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.
15
-
16
-
To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.
17
-
18
-
For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
19
-
20
-
Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.
21
-
22
-
For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.
23
-
24
-
Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.
25
-
26
-
Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.
27
-
28
-
The precise terms and conditions for copying, distribution and modification follow.
29
-
30
-
TERMS AND CONDITIONS
31
-
32
-
0. Definitions.
33
-
34
-
โThis Licenseโ refers to version 3 of the GNU General Public License.
35
-
36
-
โCopyrightโ also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.
37
-
38
-
โThe Programโ refers to any copyrightable work licensed under this License. Each licensee is addressed as โyouโ. โLicenseesโ and โrecipientsโ may be individuals or organizations.
39
-
40
-
To โmodifyโ a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a โmodified versionโ of the earlier work or a work โbased onโ the earlier work.
41
-
42
-
A โcovered workโ means either the unmodified Program or a work based on the Program.
43
-
44
-
To โpropagateโ a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.
45
-
46
-
To โconveyโ a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.
47
-
48
-
An interactive user interface displays โAppropriate Legal Noticesโ to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.
49
-
50
-
1. Source Code.
51
-
The โsource codeโ for a work means the preferred form of the work for making modifications to it. โObject codeโ means any non-source form of a work.
52
-
53
-
A โStandard Interfaceโ means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.
54
-
55
-
The โSystem Librariesโ of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A โMajor Componentโ, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.
56
-
57
-
The โCorresponding Sourceโ for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.
58
-
59
-
The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.
60
-
61
-
The Corresponding Source for a work in source code form is that same work.
62
-
63
-
2. Basic Permissions.
64
-
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.
65
-
66
-
You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.
67
-
68
-
Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
69
-
70
-
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
71
-
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.
72
-
73
-
When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.
74
-
75
-
4. Conveying Verbatim Copies.
76
-
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.
77
-
78
-
You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.
79
-
80
-
5. Conveying Modified Source Versions.
81
-
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:
82
-
83
-
a) The work must carry prominent notices stating that you modified it, and giving a relevant date.
84
-
85
-
b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to โkeep intact all noticesโ.
86
-
87
-
c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.
88
-
89
-
d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.
90
-
91
-
A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an โaggregateโ if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.
92
-
93
-
6. Conveying Non-Source Forms.
94
-
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:
95
-
96
-
a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.
97
-
98
-
b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.
99
-
100
-
c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.
101
-
102
-
d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.
103
-
104
-
e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.
105
-
106
-
A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.
107
-
108
-
A โUser Productโ is either (1) a โconsumer productโ, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, โnormally usedโ refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.
109
-
110
-
โInstallation Informationโ for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.
111
-
112
-
If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).
113
-
114
-
The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.
115
-
116
-
Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.
117
-
118
-
7. Additional Terms.
119
-
โAdditional permissionsโ are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.
120
-
121
-
When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.
122
-
123
-
Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:
124
-
125
-
a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or
126
-
127
-
b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or
128
-
129
-
c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or
130
-
131
-
d) Limiting the use for publicity purposes of names of licensors or authors of the material; or
132
-
133
-
e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or
134
-
135
-
f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.
136
-
137
-
All other non-permissive additional terms are considered โfurther restrictionsโ within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.
138
-
139
-
If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.
140
-
141
-
Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.
142
-
143
-
8. Termination.
144
-
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).
145
-
146
-
However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.
147
-
148
-
Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.
149
-
150
-
Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.
151
-
152
-
9. Acceptance Not Required for Having Copies.
153
-
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.
154
-
155
-
10. Automatic Licensing of Downstream Recipients.
156
-
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.
157
-
158
-
An โentity transactionโ is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.
159
-
160
-
You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.
161
-
162
-
11. Patents.
163
-
A โcontributorโ is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's โcontributor versionโ.
164
-
165
-
A contributor's โessential patent claimsโ are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, โcontrolโ includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.
166
-
167
-
Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.
168
-
169
-
In the following three paragraphs, a โpatent licenseโ is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To โgrantโ such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.
170
-
171
-
If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. โKnowingly relyingโ means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.
172
-
173
-
If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.
174
-
175
-
A patent license is โdiscriminatoryโ if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.
176
-
177
-
Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.
178
-
179
-
12. No Surrender of Others' Freedom.
180
-
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.
181
-
182
-
13. Use with the GNU Affero General Public License.
183
-
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.
184
-
185
-
14. Revised Versions of this License.
186
-
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
187
-
188
-
Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License โor any later versionโ applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.
189
-
190
-
If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.
191
-
192
-
Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.
193
-
194
-
15. Disclaimer of Warranty.
195
-
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM โAS ISโ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
196
-
197
-
16. Limitation of Liability.
198
-
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
199
-
200
-
17. Interpretation of Sections 15 and 16.
201
-
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.
202
-
203
-
END OF TERMS AND CONDITIONS
204
-
205
-
How to Apply These Terms to Your New Programs
206
-
207
-
If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.
208
-
209
-
To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the โcopyrightโ line and a pointer to where the full notice is found.
210
-
211
-
<one line to give the program's name and a brief idea of what it does.>
212
-
Copyright (C) <year> <name of author>
213
-
214
-
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
215
-
216
-
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
217
-
218
-
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
219
-
220
-
Also add information on how to contact you by electronic and paper mail.
221
-
222
-
If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:
223
-
224
-
<program> Copyright (C) <year> <name of author>
225
-
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
226
-
This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.
227
-
228
-
The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an โabout boxโ.
229
-
230
-
You should also get your employer (if you work as a programmer) or school, if any, to sign a โcopyright disclaimerโ for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <https://www.gnu.org/licenses/>.
231
-
232
-
The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <https://www.gnu.org/philosophy/why-not-lgpl.html>.
+22
-7
README.md
+22
-7
README.md
···
13
13
*Patisserie* is a [monorepo](https://en.wikipedia.org/wiki/Monorepo), which means
14
14
there are multiple projects hosted here. Here's a list!
15
15
16
-
| Project | Description |
17
-
| ----------- | ------------------------------------------------------------------------------------------------- |
18
-
| *packetmix* | Our [*NixOS*](https://nixos.org) configurations ("All you need to bake a delicious system") |
19
-
| *sprinkles* | Our [*Niri*](https://github.com/YaLTeR/niri) widgets ("Add some decoration to your Niri desktop") |
16
+
| Project | Shortcode | Description |
17
+
| ----------------- | --------- | ------------------------------------------------------------------------------------------------- |
18
+
| [*menu*][m] | m | Our URL shortening and [*golinks*][golinks] ("Quickly get to what you want to order") |
19
+
| [*packetmix*][pm] | pm | Our [*NixOS*](https://nixos.org) configurations ("All you need to bake a delicious system") |
20
+
| [*sprinkles*][s] | s | Our [*Niri*](https://github.com/YaLTeR/niri) widgets ("Add some decoration to your Niri desktop") |
21
+
22
+
[m]: https://tangled.org/@freshlybakedca.ke/patisserie/tree/main/menu
23
+
[pm]: https://tangled.org/@freshlybakedca.ke/patisserie/tree/main/packetmix
24
+
[s]: https://tangled.org/@freshlybakedca.ke/patisserie/tree/main/sprinkles
25
+
26
+
[golinks]: https://golinks.github.io/golinks/
27
+
28
+
Projects are developed in individual directories, and have a workspace file in
29
+
`projects/${name}` to help you clone them down with everything they need.
30
+
31
+
Shortcodes are used in commit messages as the first component of the area name
32
+
in [Conventional Commit style](https://conventionalcommits.org). For example,
33
+
feature commits to PacketMix should start with something like `feat(pm/...):`.
34
+
For commits that affect all areas, the special shortcode `*` is used.
20
35
21
36
## Cloning a single project
22
37
···
26
41
be used to filter your clone:
27
42
28
43
```bash
29
-
git clone https://git.freshlybakedca.ke/patisserie.git:workspace=packetmix.git packetmix
30
-
# Swap out the "packetmix"es at the end of the command for whatever project you want to clone
44
+
git clone https://git.freshlybakedca.ke/patisserie.git:workspace=projects/packetmix.git
45
+
# Swap out the "packetmix" at the end of the command for whatever project you want to clone
31
46
```
32
47
33
48
If you need to push then, as with *tangled* normally, you are required to use
···
47
62
to use SSH.
48
63
49
64
```bash
50
-
git remote set-url --push ssh://git@git.freshlybakedca.ke/patisserie.git:workspace=packetmix.git
65
+
git remote set-url --push ssh://git@git.freshlybakedca.ke/patisserie.git:workspace=projects/packetmix.git
51
66
# Swap out "packetmix" at the end of the URL for whatever project you have cloned
52
67
```
53
68
+35
ci.nix
+35
ci.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
let
6
+
base = import ./nilla.nix;
7
+
project = base.extend {
8
+
modules = [
9
+
10
+
{
11
+
config.inputs = (
12
+
builtins.mapAttrs (
13
+
_name: value:
14
+
if value ? settings.configuration.allowUnfree then
15
+
{
16
+
settings.configuration = {
17
+
allowUnfree = false;
18
+
allowUnfreePredicate = (
19
+
x: (x ? meta.license) && (x.meta.license.shortName == "unfreeRedistributable")
20
+
); # As we push to a public cachix, we can't use non-redistributable unfree software in CI
21
+
};
22
+
}
23
+
else
24
+
{ }
25
+
) base.inputs
26
+
);
27
+
}
28
+
29
+
{
30
+
config.lib.ci = true;
31
+
}
32
+
];
33
+
};
34
+
in
35
+
project.config // { inherit (project) extend; }
+45
nilla.nix
+45
nilla.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
let
6
+
pins = import ./npins;
7
+
8
+
nilla = import pins.nilla;
9
+
10
+
settings = config: {
11
+
nixpkgs = {
12
+
configuration.allowUnfree = true;
13
+
overlays = [
14
+
config.inputs.fenix.result.overlays.default
15
+
];
16
+
};
17
+
"nixos-24.11" = (settings config).nixpkgs;
18
+
nixos-unstable = (settings config).nixpkgs;
19
+
};
20
+
21
+
result = (nilla.create [ ]).extend {
22
+
modules = [
23
+
./menu/project.nix
24
+
./packetmix/project.nix
25
+
./sprinkles/project.nix
26
+
(
27
+
{ config, ... }:
28
+
{
29
+
config.inputs = builtins.mapAttrs (name: value: {
30
+
src = value;
31
+
settings = (settings config).${name} or config.lib.constants.undefined;
32
+
}) pins;
33
+
}
34
+
)
35
+
];
36
+
37
+
args = {
38
+
inherit nilla pins; # pins needs to be a static arg for us to import from it...
39
+
};
40
+
};
41
+
in
42
+
result.config
43
+
// {
44
+
extend = result.extend;
45
+
}
+269
npins/default.nix
+269
npins/default.nix
···
1
+
/*
2
+
This file is provided under the MIT licence:
3
+
4
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the โSoftwareโ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
+
6
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
+
8
+
THE SOFTWARE IS PROVIDED โAS ISโ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
+
*/
10
+
# Generated by npins. Do not modify; will be overwritten regularly
11
+
let
12
+
# Backwards-compatibly make something that previously didn't take any arguments take some
13
+
# The function must return an attrset, and will unfortunately be eagerly evaluated
14
+
# Same thing, but it catches eval errors on the default argument so that one may still call it with other arguments
15
+
mkFunctor =
16
+
fn:
17
+
let
18
+
e = builtins.tryEval (fn { });
19
+
in
20
+
(if e.success then e.value else { error = fn { }; }) // { __functor = _self: fn; };
21
+
22
+
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295
23
+
range =
24
+
first: last: if first > last then [ ] else builtins.genList (n: first + n) (last - first + 1);
25
+
26
+
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257
27
+
stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1));
28
+
29
+
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269
30
+
stringAsChars = f: s: concatStrings (map f (stringToCharacters s));
31
+
concatStrings = builtins.concatStringsSep "";
32
+
33
+
# If the environment variable NPINS_OVERRIDE_${name} is set, then use
34
+
# the path directly as opposed to the fetched source.
35
+
# (Taken from Niv for compatibility)
36
+
mayOverride =
37
+
name: path:
38
+
let
39
+
envVarName = "NPINS_OVERRIDE_${saneName}";
40
+
saneName = stringAsChars (c: if (builtins.match "[a-zA-Z0-9]" c) == null then "_" else c) name;
41
+
ersatz = builtins.getEnv envVarName;
42
+
in
43
+
if ersatz == "" then
44
+
path
45
+
else
46
+
# this turns the string into an actual Nix path (for both absolute and
47
+
# relative paths)
48
+
builtins.trace "Overriding path of \"${name}\" with \"${ersatz}\" due to set \"${envVarName}\"" (
49
+
if builtins.substring 0 1 ersatz == "/" then
50
+
/. + ersatz
51
+
else
52
+
/. + builtins.getEnv "PWD" + "/${ersatz}"
53
+
);
54
+
55
+
mkSource =
56
+
name: spec:
57
+
{
58
+
pkgs ? null,
59
+
}:
60
+
assert spec ? type;
61
+
let
62
+
# Unify across builtin and pkgs fetchers.
63
+
# `fetchGit` requires a wrapper because of slight API differences.
64
+
fetchers =
65
+
if pkgs == null then
66
+
{
67
+
inherit (builtins) fetchTarball fetchurl;
68
+
# For some fucking reason, fetchGit has a different signature than the other builtin fetchers โฆ
69
+
fetchGit = args: (builtins.fetchGit args).outPath;
70
+
}
71
+
else
72
+
{
73
+
fetchTarball =
74
+
{
75
+
url,
76
+
sha256,
77
+
}:
78
+
pkgs.fetchzip {
79
+
inherit url sha256;
80
+
extension = "tar";
81
+
};
82
+
inherit (pkgs) fetchurl;
83
+
fetchGit =
84
+
{
85
+
url,
86
+
submodules,
87
+
rev,
88
+
branch ? null,
89
+
name,
90
+
narHash,
91
+
}:
92
+
pkgs.fetchgit (
93
+
{
94
+
inherit url rev name;
95
+
fetchSubmodules = submodules;
96
+
hash = narHash;
97
+
}
98
+
// (
99
+
if branch == null then
100
+
{ }
101
+
else
102
+
{
103
+
ref = "refs/heads/${branch}";
104
+
}
105
+
)
106
+
);
107
+
};
108
+
109
+
# Dispatch to the correct code path based on the type
110
+
path =
111
+
if spec.type == "Git" then
112
+
mkGitSource fetchers spec
113
+
else if spec.type == "GitRelease" then
114
+
mkGitSource fetchers spec
115
+
else if spec.type == "PyPi" then
116
+
mkPyPiSource fetchers spec
117
+
else if spec.type == "Channel" then
118
+
mkChannelSource fetchers spec
119
+
else if spec.type == "Tarball" then
120
+
mkTarballSource fetchers spec
121
+
else if spec.type == "Container" then
122
+
mkContainerSource pkgs spec
123
+
else
124
+
builtins.throw "Unknown source type ${spec.type}";
125
+
in
126
+
spec // { outPath = mayOverride name path; };
127
+
128
+
mkGitSource =
129
+
{
130
+
fetchTarball,
131
+
fetchGit,
132
+
...
133
+
}:
134
+
{
135
+
repository,
136
+
revision,
137
+
url ? null,
138
+
branch ? null,
139
+
submodules,
140
+
hash,
141
+
...
142
+
}:
143
+
assert repository ? type;
144
+
# At the moment, either it is a plain git repository (which has an url), or it is a GitHub/GitLab repository
145
+
# In the latter case, there we will always be an url to the tarball
146
+
if url != null && !submodules then
147
+
fetchTarball {
148
+
inherit url;
149
+
sha256 = hash;
150
+
}
151
+
else
152
+
let
153
+
url =
154
+
if repository.type == "Git" then
155
+
repository.url
156
+
else if repository.type == "GitHub" then
157
+
"https://github.com/${repository.owner}/${repository.repo}.git"
158
+
else if repository.type == "GitLab" then
159
+
"${repository.server}/${repository.repo_path}.git"
160
+
else
161
+
throw "Unrecognized repository type ${repository.type}";
162
+
urlToName =
163
+
url: rev:
164
+
let
165
+
matched = builtins.match "^.*/([^/]*)(\\.git)?$" url;
166
+
167
+
short = builtins.substring 0 7 rev;
168
+
169
+
appendShort = if (builtins.match "[a-f0-9]*" rev) != null then "-${short}" else "";
170
+
in
171
+
"${if matched == null then "source" else builtins.head matched}${appendShort}";
172
+
name = urlToName url revision;
173
+
in
174
+
fetchGit (
175
+
{
176
+
rev = revision;
177
+
narHash = hash;
178
+
179
+
inherit name submodules url;
180
+
}
181
+
// (
182
+
if branch == null then
183
+
{ }
184
+
else
185
+
{
186
+
ref = "refs/heads/${branch}";
187
+
}
188
+
)
189
+
);
190
+
191
+
mkPyPiSource =
192
+
{ fetchurl, ... }:
193
+
{
194
+
url,
195
+
hash,
196
+
...
197
+
}:
198
+
fetchurl {
199
+
inherit url;
200
+
sha256 = hash;
201
+
};
202
+
203
+
mkChannelSource =
204
+
{ fetchTarball, ... }:
205
+
{
206
+
url,
207
+
hash,
208
+
...
209
+
}:
210
+
fetchTarball {
211
+
inherit url;
212
+
sha256 = hash;
213
+
};
214
+
215
+
mkTarballSource =
216
+
{ fetchTarball, ... }:
217
+
{
218
+
url,
219
+
locked_url ? url,
220
+
hash,
221
+
...
222
+
}:
223
+
fetchTarball {
224
+
url = locked_url;
225
+
sha256 = hash;
226
+
};
227
+
228
+
mkContainerSource =
229
+
pkgs:
230
+
{
231
+
image_name,
232
+
image_tag,
233
+
image_digest,
234
+
...
235
+
}:
236
+
if pkgs == null then
237
+
builtins.throw "container sources require passing in a Nixpkgs value: https://github.com/andir/npins/blob/master/README.md#using-the-nixpkgs-fetchers"
238
+
else
239
+
pkgs.dockerTools.pullImage {
240
+
imageName = image_name;
241
+
imageDigest = image_digest;
242
+
finalImageTag = image_tag;
243
+
};
244
+
in
245
+
mkFunctor (
246
+
{
247
+
input ? ./sources.json,
248
+
}:
249
+
let
250
+
data =
251
+
if builtins.isPath input then
252
+
# while `readFile` will throw an error anyways if the path doesn't exist,
253
+
# we still need to check beforehand because *our* error can be caught but not the one from the builtin
254
+
# *piegames sighs*
255
+
if builtins.pathExists input then
256
+
builtins.fromJSON (builtins.readFile input)
257
+
else
258
+
throw "Input path ${toString input} does not exist"
259
+
else if builtins.isAttrs input then
260
+
input
261
+
else
262
+
throw "Unsupported input type ${builtins.typeOf input}, must be a path or an attrset";
263
+
version = data.version;
264
+
in
265
+
if version == 7 then
266
+
builtins.mapAttrs (name: spec: mkFunctor (mkSource name spec)) data.pins
267
+
else
268
+
throw "Unsupported format version ${toString version} in sources.json. Try running `npins upgrade`"
269
+
)
+3
npins/default.nix.license
+3
npins/default.nix.license
+648
npins/sources.json
+648
npins/sources.json
···
1
+
{
2
+
"pins": {
3
+
"AdvancedSearch": {
4
+
"type": "Git",
5
+
"repository": {
6
+
"type": "Git",
7
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/AdvancedSearch"
8
+
},
9
+
"branch": "REL1_45",
10
+
"submodules": false,
11
+
"revision": "398c9fa782843d8b3aeaa5ebb1c1b3db35c3382f",
12
+
"url": null,
13
+
"hash": "sha256-fDNvurTihHbI9js8sU+oy37/XfHWiFVN+ONxuvhNBN4="
14
+
},
15
+
"Auth_remoteuser": {
16
+
"type": "Git",
17
+
"repository": {
18
+
"type": "Git",
19
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/Auth_remoteuser"
20
+
},
21
+
"branch": "master",
22
+
"submodules": false,
23
+
"revision": "12fb5f6d1a4bcfd1741b02fd60ec3c9ff6ec5faa",
24
+
"url": null,
25
+
"hash": "sha256-yks79QtWndY2+ESKFcO2EPlj886TDLV+DldK+GpiMXI="
26
+
},
27
+
"AutoCreateCategoryPages": {
28
+
"type": "GitRelease",
29
+
"repository": {
30
+
"type": "Git",
31
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/AutoCreateCategoryPages"
32
+
},
33
+
"pre_releases": false,
34
+
"version_upper_bound": null,
35
+
"release_prefix": null,
36
+
"submodules": false,
37
+
"version": "v1.0.3",
38
+
"revision": "9a57c329e92f69e55b4d9972cf5732bb8bfeed88",
39
+
"url": null,
40
+
"hash": "sha256-kOXoJEhp7JNtNJO1H6IDofHiiOdNAYEjsma8aenZn/g="
41
+
},
42
+
"Cargo": {
43
+
"type": "GitRelease",
44
+
"repository": {
45
+
"type": "Git",
46
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/Cargo"
47
+
},
48
+
"pre_releases": false,
49
+
"version_upper_bound": null,
50
+
"release_prefix": null,
51
+
"submodules": false,
52
+
"version": "3.8.5",
53
+
"revision": "3dc65263537bfaf2ee24f3147926876daf25b86e",
54
+
"url": null,
55
+
"hash": "sha256-yFOyqK6Mu71x451BEw1FSWpamLl6JbTJ+NwNPM8YJ30="
56
+
},
57
+
"CirrusSearch": {
58
+
"type": "Git",
59
+
"repository": {
60
+
"type": "Git",
61
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/CirrusSearch"
62
+
},
63
+
"branch": "REL1_45",
64
+
"submodules": false,
65
+
"revision": "206eaf208e6f43c5d52c71237ae64e8c7050dce3",
66
+
"url": null,
67
+
"hash": "sha256-MQTmzWiDyhmxV0cmT8ZGS9ctfROvgDnfee9u/Mu3j04="
68
+
},
69
+
"EditNotify": {
70
+
"type": "Git",
71
+
"repository": {
72
+
"type": "Git",
73
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/EditNotify"
74
+
},
75
+
"branch": "master",
76
+
"submodules": false,
77
+
"revision": "8e94f6db0fd47d421cb913dcf4cacf1354554844",
78
+
"url": null,
79
+
"hash": "sha256-Fn3LRe4IhKPGqvdxfJ+208pCcvpJ8TQx3ir7JNVFuVU="
80
+
},
81
+
"Elastica": {
82
+
"type": "Git",
83
+
"repository": {
84
+
"type": "Git",
85
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/Elastica"
86
+
},
87
+
"branch": "REL1_45",
88
+
"submodules": false,
89
+
"revision": "848e0e671d20fd03dfb35785196bc882e9c2e1e8",
90
+
"url": null,
91
+
"hash": "sha256-nPShvlf9GizwfzZstFhj4mv3DcHg8leN+zfiv9kETAg="
92
+
},
93
+
"MobileFrontend": {
94
+
"type": "Git",
95
+
"repository": {
96
+
"type": "Git",
97
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/MobileFrontend"
98
+
},
99
+
"branch": "REL1_45",
100
+
"submodules": false,
101
+
"revision": "2bccb7e19bbe154ac24eae97137ce5396d63339d",
102
+
"url": null,
103
+
"hash": "sha256-X4vq7SnGQZMBjDDCv6ZRllnDzJ/QmKoA2REkC/2jm+g="
104
+
},
105
+
"NamespacePreload": {
106
+
"type": "Git",
107
+
"repository": {
108
+
"type": "GitLab",
109
+
"repo_path": "nonsensopedia/extensions/namespacepreload",
110
+
"server": "https://gitlab.com/"
111
+
},
112
+
"branch": "master",
113
+
"submodules": false,
114
+
"revision": "e7165b33f5216e1dc9240243b15bb05fe909f593",
115
+
"url": "https://gitlab.com/api/v4/projects/nonsensopedia%2Fextensions%2Fnamespacepreload/repository/archive.tar.gz?sha=e7165b33f5216e1dc9240243b15bb05fe909f593",
116
+
"hash": "sha256-9BeZAxy14ScMUemQ/lYT1zrGg9+pZQOuiCMwhjQrarE="
117
+
},
118
+
"Network": {
119
+
"type": "GitRelease",
120
+
"repository": {
121
+
"type": "GitHub",
122
+
"owner": "ProfessionalWiki",
123
+
"repo": "Network"
124
+
},
125
+
"pre_releases": false,
126
+
"version_upper_bound": null,
127
+
"release_prefix": null,
128
+
"submodules": false,
129
+
"version": "4.0.0",
130
+
"revision": "5e8d222a34a9f4f5896465f90de1333c0d316bb6",
131
+
"url": "https://api.github.com/repos/ProfessionalWiki/Network/tarball/refs/tags/4.0.0",
132
+
"hash": "sha256-HO6k2RAY3nV4JWR49ozgUHxxDz1u7njbMRGX4HLjEzM="
133
+
},
134
+
"OpenIDConnect": {
135
+
"type": "Git",
136
+
"repository": {
137
+
"type": "Git",
138
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/OpenIDConnect"
139
+
},
140
+
"branch": "master",
141
+
"submodules": false,
142
+
"revision": "c248f1f986cef3c591f17606cd3ca8da9b5bb6f0",
143
+
"url": null,
144
+
"hash": "sha256-lWgJzmc9Nu3NlMbF16BPlpPFDv5Ql6xkVTLkOiKp3tc="
145
+
},
146
+
"OpenSearch": {
147
+
"type": "Tarball",
148
+
"url": "https://artifacts.opensearch.org/releases/bundle/opensearch/1.3.20/opensearch-1.3.20-linux-x64.tar.gz",
149
+
"hash": "sha256-nPrvhDwnhzveF9ljUhGklmITEBKvT3hNchOfusGXYJQ="
150
+
},
151
+
"PluggableAuth": {
152
+
"type": "Git",
153
+
"repository": {
154
+
"type": "Git",
155
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/PluggableAuth"
156
+
},
157
+
"branch": "master",
158
+
"submodules": false,
159
+
"revision": "a69a436b60e127f3b2eb38d78fe1a62fcf5bf131",
160
+
"url": null,
161
+
"hash": "sha256-yg0TQdMxxd6OmyYBJcvxzVhvzRECjlhUG7UVscBExp4="
162
+
},
163
+
"SimpleTooltip": {
164
+
"type": "GitRelease",
165
+
"repository": {
166
+
"type": "GitHub",
167
+
"owner": "gesinn-it-pub",
168
+
"repo": "SimpleTooltip"
169
+
},
170
+
"pre_releases": false,
171
+
"version_upper_bound": null,
172
+
"release_prefix": null,
173
+
"submodules": false,
174
+
"version": "2.0.0",
175
+
"revision": "bf85ad092f6e6cf6a48ab2430f79d4396f307a6a",
176
+
"url": "https://api.github.com/repos/gesinn-it-pub/SimpleTooltip/tarball/refs/tags/2.0.0",
177
+
"hash": "sha256-xMh5FdlLCV/rty5+OexlfCNBORP5F5UpdIrWG4MKWh4="
178
+
},
179
+
"UserMerge": {
180
+
"type": "Git",
181
+
"repository": {
182
+
"type": "Git",
183
+
"url": "https://gerrit.wikimedia.org/r/mediawiki/extensions/UserMerge"
184
+
},
185
+
"branch": "master",
186
+
"submodules": false,
187
+
"revision": "12fc48ab4effffbef7bdd50ead599d2753866185",
188
+
"url": null,
189
+
"hash": "sha256-ok4VrP0ZZTQZ4hgI/T5iVSm8VthCp8S4y9yhaj7mCVQ="
190
+
},
191
+
"beancount-autobean": {
192
+
"type": "Git",
193
+
"repository": {
194
+
"type": "GitHub",
195
+
"owner": "SEIAROTg",
196
+
"repo": "autobean"
197
+
},
198
+
"branch": "master",
199
+
"submodules": false,
200
+
"revision": "1a45fc465a9e2eefb595ecadac52c92083922375",
201
+
"url": "https://github.com/SEIAROTg/autobean/archive/1a45fc465a9e2eefb595ecadac52c92083922375.tar.gz",
202
+
"hash": "sha256-9P/kAMYWfTnMWEfMLiDQdJgOUtUy+Zmso6u/qKtSqi0="
203
+
},
204
+
"beancount-beancount_plugin_utils": {
205
+
"type": "Git",
206
+
"repository": {
207
+
"type": "GitHub",
208
+
"owner": "Akuukis",
209
+
"repo": "beancount_plugin_utils"
210
+
},
211
+
"branch": "master",
212
+
"submodules": false,
213
+
"revision": "053807f55b062a4d7bca91612a856da3812cb465",
214
+
"url": "https://github.com/Akuukis/beancount_plugin_utils/archive/053807f55b062a4d7bca91612a856da3812cb465.tar.gz",
215
+
"hash": "sha256-oyfL2K/sS4zZ7cq1P36h0dTcW1m5GUyQ9+IyZGfpb2E="
216
+
},
217
+
"beancount-beancount_share": {
218
+
"type": "Git",
219
+
"repository": {
220
+
"type": "GitHub",
221
+
"owner": "Akuukis",
222
+
"repo": "beancount_share"
223
+
},
224
+
"branch": "master",
225
+
"submodules": false,
226
+
"revision": "4101c45e16948c0683520cebcf88afe4862224c4",
227
+
"url": "https://github.com/Akuukis/beancount_share/archive/4101c45e16948c0683520cebcf88afe4862224c4.tar.gz",
228
+
"hash": "sha256-BW2KEC0pmervT71FBixPcQciEuGcElCd2wW7BZL1xUg="
229
+
},
230
+
"beancount-smart_importer": {
231
+
"type": "Git",
232
+
"repository": {
233
+
"type": "GitHub",
234
+
"owner": "beancount",
235
+
"repo": "smart_importer"
236
+
},
237
+
"branch": "main",
238
+
"submodules": false,
239
+
"revision": "ef0b279f1e650673221170ea4370d041d9d1b29b",
240
+
"url": "https://github.com/beancount/smart_importer/archive/ef0b279f1e650673221170ea4370d041d9d1b29b.tar.gz",
241
+
"hash": "sha256-MezBeiDhvhc5rO+p+dYXQGPua8GSLRYpbH/px+pyQMA="
242
+
},
243
+
"bluesky-atproto": {
244
+
"type": "Git",
245
+
"repository": {
246
+
"type": "GitHub",
247
+
"owner": "bluesky-social",
248
+
"repo": "atproto"
249
+
},
250
+
"branch": "main",
251
+
"submodules": false,
252
+
"revision": "3628cebfbb04ba49f326bbf411a2d15de2900302",
253
+
"url": "https://github.com/bluesky-social/atproto/archive/3628cebfbb04ba49f326bbf411a2d15de2900302.tar.gz",
254
+
"hash": "sha256-5udskm8sOQ73VukP6bweE0rNxW8YG9so8Gk93x9Dzzs="
255
+
},
256
+
"catppuccin": {
257
+
"type": "Git",
258
+
"repository": {
259
+
"type": "GitHub",
260
+
"owner": "catppuccin",
261
+
"repo": "nix"
262
+
},
263
+
"branch": "main",
264
+
"submodules": false,
265
+
"revision": "8a084b86b6a4b2a1575e8cc67e07c4a687fce276",
266
+
"url": "https://github.com/catppuccin/nix/archive/8a084b86b6a4b2a1575e8cc67e07c4a687fce276.tar.gz",
267
+
"hash": "sha256-SgqC+B7F7hHDKug+zRUL83vhibCSknzhRl0+OxUYjn4=",
268
+
"frozen": true
269
+
},
270
+
"collabora-gtimelog": {
271
+
"type": "Git",
272
+
"repository": {
273
+
"type": "GitLab",
274
+
"repo_path": "collabora/gtimelog",
275
+
"server": "https://gitlab.collabora.com/"
276
+
},
277
+
"branch": "master",
278
+
"submodules": false,
279
+
"revision": "1be9d9f7e844831f221b67a46a55fc47a164e416",
280
+
"url": "https://gitlab.collabora.com/api/v4/projects/collabora%2Fgtimelog/repository/archive.tar.gz?sha=1be9d9f7e844831f221b67a46a55fc47a164e416",
281
+
"hash": "sha256-v5WEa7M0mmrxdU1l7nIqyrMaVy2jiJNnXHLiHnw2xIc="
282
+
},
283
+
"copyparty": {
284
+
"type": "GitRelease",
285
+
"repository": {
286
+
"type": "GitHub",
287
+
"owner": "9001",
288
+
"repo": "copyparty"
289
+
},
290
+
"pre_releases": false,
291
+
"version_upper_bound": null,
292
+
"release_prefix": null,
293
+
"submodules": false,
294
+
"version": "v1.19.20",
295
+
"revision": "450cd86dc1e98b98ab131fc9417c83289165a507",
296
+
"url": "https://api.github.com/repos/9001/copyparty/tarball/refs/tags/v1.19.20",
297
+
"hash": "sha256-/Wm8hZvdGfYWdTOF+dgTPX8DGuSKLhGw4qC4crf1dAo="
298
+
},
299
+
"fenix": {
300
+
"type": "Git",
301
+
"repository": {
302
+
"type": "GitHub",
303
+
"owner": "nix-community",
304
+
"repo": "fenix"
305
+
},
306
+
"branch": "monthly",
307
+
"submodules": false,
308
+
"revision": "a3eaf682db8800962943a77ab77c0aae966f9825",
309
+
"url": "https://github.com/nix-community/fenix/archive/a3eaf682db8800962943a77ab77c0aae966f9825.tar.gz",
310
+
"hash": "sha256-PnQdWvPZqHp+7yaHWDFX3NYSKaOy0fjkwpR+rIQC7AY="
311
+
},
312
+
"headscale": {
313
+
"type": "Git",
314
+
"repository": {
315
+
"type": "GitHub",
316
+
"owner": "juanfont",
317
+
"repo": "headscale"
318
+
},
319
+
"branch": "main",
320
+
"submodules": false,
321
+
"revision": "21af106f68fa38f37d80c9ac91a336a4f53bc074",
322
+
"url": "https://github.com/juanfont/headscale/archive/21af106f68fa38f37d80c9ac91a336a4f53bc074.tar.gz",
323
+
"hash": "sha256-EGLIiL/80bf6e5P5oDcG7zw7fMpOK5jIALd8rmu6Jv8="
324
+
},
325
+
"home-manager": {
326
+
"type": "Git",
327
+
"repository": {
328
+
"type": "GitHub",
329
+
"owner": "nix-community",
330
+
"repo": "home-manager"
331
+
},
332
+
"branch": "release-25.11",
333
+
"submodules": false,
334
+
"revision": "d3135ab747fd9dac250ffb90b4a7e80634eacbe9",
335
+
"url": "https://github.com/nix-community/home-manager/archive/d3135ab747fd9dac250ffb90b4a7e80634eacbe9.tar.gz",
336
+
"hash": "sha256-/r9/1KamvbHJx6I40H4HsSXnEcBAkj46ZwibhBx9kg0="
337
+
},
338
+
"home-manager-unstable": {
339
+
"type": "Git",
340
+
"repository": {
341
+
"type": "GitHub",
342
+
"owner": "nix-community",
343
+
"repo": "home-manager"
344
+
},
345
+
"branch": "master",
346
+
"submodules": false,
347
+
"revision": "827f2a23373a774a8805f84ca5344654c31f354b",
348
+
"url": "https://github.com/nix-community/home-manager/archive/827f2a23373a774a8805f84ca5344654c31f354b.tar.gz",
349
+
"hash": "sha256-RYHN8O/Aja59XDji6WSJZPkJpYVUfpSkyH+PEupBJqM="
350
+
},
351
+
"impermanence": {
352
+
"type": "Git",
353
+
"repository": {
354
+
"type": "GitHub",
355
+
"owner": "nix-community",
356
+
"repo": "impermanence"
357
+
},
358
+
"branch": "master",
359
+
"submodules": false,
360
+
"revision": "4b3e914cdf97a5b536a889e939fb2fd2b043a170",
361
+
"url": "https://github.com/nix-community/impermanence/archive/4b3e914cdf97a5b536a889e939fb2fd2b043a170.tar.gz",
362
+
"hash": "sha256-LJggUHbpyeDvNagTUrdhe/pRVp4pnS6wVKALS782gRI="
363
+
},
364
+
"josh": {
365
+
"type": "Git",
366
+
"repository": {
367
+
"type": "GitHub",
368
+
"owner": "josh-project",
369
+
"repo": "josh"
370
+
},
371
+
"branch": "master",
372
+
"submodules": false,
373
+
"revision": "fc2bb5f79a4fc96f0adb1e015b9ac155beac7b3a",
374
+
"url": "https://github.com/josh-project/josh/archive/fc2bb5f79a4fc96f0adb1e015b9ac155beac7b3a.tar.gz",
375
+
"hash": "sha256-/lwBR2FD5nC9Qn+0pgd5APw97auMDg/NeZl5I9VrgZk="
376
+
},
377
+
"lanzaboote": {
378
+
"type": "GitRelease",
379
+
"repository": {
380
+
"type": "GitHub",
381
+
"owner": "nix-community",
382
+
"repo": "lanzaboote"
383
+
},
384
+
"pre_releases": false,
385
+
"version_upper_bound": null,
386
+
"release_prefix": null,
387
+
"submodules": false,
388
+
"version": "v0.4.3",
389
+
"revision": "65a4aa3d4dccf50f22c0190c7ee660de51c586f2",
390
+
"url": "https://api.github.com/repos/nix-community/lanzaboote/tarball/refs/tags/v0.4.3",
391
+
"hash": "sha256-If6vQ+KvtKs3ARBO9G3l+4wFSCYtRBrwX1z+I+B61wQ="
392
+
},
393
+
"lix": {
394
+
"type": "Git",
395
+
"repository": {
396
+
"type": "Forgejo",
397
+
"server": "https://git.lix.systems/",
398
+
"owner": "lix-project",
399
+
"repo": "lix"
400
+
},
401
+
"branch": "main",
402
+
"submodules": false,
403
+
"revision": "2fa40c9de49e47c1f59dd32bf99227884bad3a2d",
404
+
"url": "https://git.lix.systems/lix-project/lix/archive/2fa40c9de49e47c1f59dd32bf99227884bad3a2d.tar.gz",
405
+
"hash": "sha256-2SAAMUhS1rH2J0elOJZLAbU6KjQ1r6vEWrRFeIaVDzM="
406
+
},
407
+
"lix-module": {
408
+
"type": "Git",
409
+
"repository": {
410
+
"type": "Forgejo",
411
+
"server": "https://git.lix.systems/",
412
+
"owner": "lix-project",
413
+
"repo": "nixos-module"
414
+
},
415
+
"branch": "main",
416
+
"submodules": false,
417
+
"revision": "c47f62187601ea2991b79a9bacdbfdf76cd29fbe",
418
+
"url": "https://git.lix.systems/lix-project/nixos-module/archive/c47f62187601ea2991b79a9bacdbfdf76cd29fbe.tar.gz",
419
+
"hash": "sha256-FvuAw56NIVJpS3Kr8Wv9PpU4eehZMcdIVkxjStuYmqc="
420
+
},
421
+
"lua-multipart": {
422
+
"type": "GitRelease",
423
+
"repository": {
424
+
"type": "GitHub",
425
+
"owner": "Kong",
426
+
"repo": "lua-multipart"
427
+
},
428
+
"pre_releases": true,
429
+
"version_upper_bound": null,
430
+
"release_prefix": null,
431
+
"submodules": false,
432
+
"version": "0.5.11-1",
433
+
"revision": "423092b5d6d03db33bd70773077e8c185e982846",
434
+
"url": "https://api.github.com/repos/Kong/lua-multipart/tarball/refs/tags/0.5.11-1",
435
+
"hash": "sha256-CWQf76/SQEHYX0Xv1UudA4RJtZsMpLY+IU8vjlqnsQY="
436
+
},
437
+
"nilla": {
438
+
"type": "Git",
439
+
"repository": {
440
+
"type": "GitHub",
441
+
"owner": "nilla-nix",
442
+
"repo": "nilla"
443
+
},
444
+
"branch": "private/minion/push-swlstmwvzvkr",
445
+
"submodules": false,
446
+
"revision": "1a45420c0b579aea97d834d04e6eec773a8391b1",
447
+
"url": "https://github.com/nilla-nix/nilla/archive/1a45420c0b579aea97d834d04e6eec773a8391b1.tar.gz",
448
+
"hash": "sha256-4jqikEAkh5GUKGDkGAtWRWZexN25Rzt0yIsnilhA77U="
449
+
},
450
+
"nilla-cli": {
451
+
"type": "Git",
452
+
"repository": {
453
+
"type": "GitHub",
454
+
"owner": "nilla-nix",
455
+
"repo": "cli"
456
+
},
457
+
"branch": "main",
458
+
"submodules": false,
459
+
"revision": "aa042dbd9152c99e5a8db51bcf87306737423b9e",
460
+
"url": "https://github.com/nilla-nix/cli/archive/aa042dbd9152c99e5a8db51bcf87306737423b9e.tar.gz",
461
+
"hash": "sha256-cPdYYXhCsDllVgq+gs5Wqhb41bFtKWHlkTvjOJv7its="
462
+
},
463
+
"nilla-home": {
464
+
"type": "Git",
465
+
"repository": {
466
+
"type": "GitHub",
467
+
"owner": "nilla-nix",
468
+
"repo": "home"
469
+
},
470
+
"branch": "private/minion/push-ovknmuuuxzul",
471
+
"submodules": false,
472
+
"revision": "7d7189e841d70136ac0f9d8a4c024cdc0fe8605d",
473
+
"url": "https://github.com/nilla-nix/home/archive/7d7189e841d70136ac0f9d8a4c024cdc0fe8605d.tar.gz",
474
+
"hash": "sha256-LZrPz9bp3VDOpiv95MuCKIkfgRmfAkR5x4DLNDxCa+o="
475
+
},
476
+
"nilla-nixos": {
477
+
"type": "Git",
478
+
"repository": {
479
+
"type": "GitHub",
480
+
"owner": "nilla-nix",
481
+
"repo": "nixos"
482
+
},
483
+
"branch": "private/minion/push-yxkmmnpurumu",
484
+
"submodules": false,
485
+
"revision": "c851cfd1e9555ab2372fd4ce48e1094059eed561",
486
+
"url": "https://github.com/nilla-nix/nixos/archive/c851cfd1e9555ab2372fd4ce48e1094059eed561.tar.gz",
487
+
"hash": "sha256-Mj5DQKDql1IxXsd13zpjJBitjz0ZD6Wr7Q3ASgUFXQY="
488
+
},
489
+
"niri": {
490
+
"type": "Git",
491
+
"repository": {
492
+
"type": "GitHub",
493
+
"owner": "sodiboo",
494
+
"repo": "niri-flake"
495
+
},
496
+
"branch": "main",
497
+
"submodules": false,
498
+
"revision": "d06ab0308d797dc4b2f9025d5952cca90afd11a7",
499
+
"url": "https://github.com/sodiboo/niri-flake/archive/d06ab0308d797dc4b2f9025d5952cca90afd11a7.tar.gz",
500
+
"hash": "sha256-e1SOJYHe5IbKFIOpWswB/4nIog1Zx5iXA4YB49XTFxE="
501
+
},
502
+
"nix-index-database": {
503
+
"type": "Git",
504
+
"repository": {
505
+
"type": "GitHub",
506
+
"owner": "nix-community",
507
+
"repo": "nix-index-database"
508
+
},
509
+
"branch": "main",
510
+
"submodules": false,
511
+
"revision": "15c5451c63f4c612874a43846bfe3fa828b03eee",
512
+
"url": "https://github.com/nix-community/nix-index-database/archive/15c5451c63f4c612874a43846bfe3fa828b03eee.tar.gz",
513
+
"hash": "sha256-C9F1C31ys0V7mnp4EcDy7L1cLZw/sCTEXqqTtGnvu08="
514
+
},
515
+
"nix-monitored": {
516
+
"type": "Git",
517
+
"repository": {
518
+
"type": "GitHub",
519
+
"owner": "ners",
520
+
"repo": "nix-monitored"
521
+
},
522
+
"branch": "master",
523
+
"submodules": false,
524
+
"revision": "60f3baa4701d58eab86c2d1d9c3d7e820074d461",
525
+
"url": "https://github.com/ners/nix-monitored/archive/60f3baa4701d58eab86c2d1d9c3d7e820074d461.tar.gz",
526
+
"hash": "sha256-Z8PknjkmIr/8ZCH+dmc2Pc+UltiOr7/oKg37PXuVvuU="
527
+
},
528
+
"nixos-prev": {
529
+
"type": "Channel",
530
+
"name": "nixos-25.05",
531
+
"url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.813798.40ee5e1944be/nixexprs.tar.xz",
532
+
"hash": "sha256-fZOGhoxE03G6SuKVZC6bPf7IdPYW9gLHYS1wC64emlU="
533
+
},
534
+
"nixos-unstable": {
535
+
"type": "Channel",
536
+
"name": "nixos-unstable",
537
+
"url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre912002.1306659b587d/nixexprs.tar.xz",
538
+
"hash": "sha256-2BzIb1uB1hPl5fKGsMc+xj2DrSYmpRLcKdCq0UHdLwI="
539
+
},
540
+
"nixpkgs": {
541
+
"type": "Channel",
542
+
"name": "nixos-25.11",
543
+
"url": "https://releases.nixos.org/nixos/25.11/nixos-25.11.1948.c6f52ebd45e5/nixexprs.tar.xz",
544
+
"hash": "sha256-Rgx3RPys4DTsfZPBbJa2QpJGbjnWVC7V2Rlviyp4qMI="
545
+
},
546
+
"npins": {
547
+
"type": "Git",
548
+
"repository": {
549
+
"type": "GitHub",
550
+
"owner": "andir",
551
+
"repo": "npins"
552
+
},
553
+
"branch": "master",
554
+
"submodules": false,
555
+
"revision": "0d6aaa4b3dcd1d8badbed2b66e0c50867330a86e",
556
+
"url": "https://github.com/andir/npins/archive/0d6aaa4b3dcd1d8badbed2b66e0c50867330a86e.tar.gz",
557
+
"hash": "sha256-9N14/tliOiA49Us2uFUWHcrhYN8AmJjR+bnwzcxejgs="
558
+
},
559
+
"quickshell": {
560
+
"type": "GitRelease",
561
+
"repository": {
562
+
"type": "Forgejo",
563
+
"server": "https://git.outfoxxed.me/",
564
+
"owner": "quickshell",
565
+
"repo": "quickshell"
566
+
},
567
+
"pre_releases": false,
568
+
"version_upper_bound": null,
569
+
"release_prefix": null,
570
+
"submodules": false,
571
+
"version": "v0.2.0",
572
+
"revision": "a5431dd02dc23d9ef1680e67777fed00fe5f7cda",
573
+
"url": "https://git.outfoxxed.me/api/v1/repos/quickshell/quickshell/archive/v0.2.0.tar.gz",
574
+
"hash": "sha256-vqkSDvh7hWhPvNjMjEDV4KbSCv2jyl2Arh73ZXe274k="
575
+
},
576
+
"scriptfs": {
577
+
"type": "Git",
578
+
"repository": {
579
+
"type": "GitHub",
580
+
"owner": "eewanco",
581
+
"repo": "scriptfs"
582
+
},
583
+
"branch": "master",
584
+
"submodules": false,
585
+
"revision": "82d7e4865c9a8e40bc717c8745d052420365069c",
586
+
"url": "https://github.com/eewanco/scriptfs/archive/82d7e4865c9a8e40bc717c8745d052420365069c.tar.gz",
587
+
"hash": "sha256-WLuOt8zemooHDzK+zWJNBicKu8bg0wXyAGvZIH/po6o="
588
+
},
589
+
"tangled": {
590
+
"type": "Git",
591
+
"repository": {
592
+
"type": "Git",
593
+
"url": "https://tangled.sh/freshlybakedca.ke/core"
594
+
},
595
+
"branch": "private/minion/push-pyxzxvyxylmx",
596
+
"submodules": false,
597
+
"revision": "acc63d3522b0c9b92ef3ab9214102bedaa944faf",
598
+
"url": null,
599
+
"hash": "sha256-DwlweCkrVRga1dZY/gne7DDsFdLsQ8vlgpWegXAbrLY="
600
+
},
601
+
"treefmt-nix": {
602
+
"type": "Git",
603
+
"repository": {
604
+
"type": "GitHub",
605
+
"owner": "numtide",
606
+
"repo": "treefmt-nix"
607
+
},
608
+
"branch": "main",
609
+
"submodules": false,
610
+
"revision": "5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4",
611
+
"url": "https://github.com/numtide/treefmt-nix/archive/5b4ee75aeefd1e2d5a1cc43cf6ba65eba75e83e4.tar.gz",
612
+
"hash": "sha256-AlEObg0syDl+Spi4LsZIBrjw+snSVU4T8MOeuZJUJjM="
613
+
},
614
+
"vs-launcher": {
615
+
"type": "GitRelease",
616
+
"repository": {
617
+
"type": "GitHub",
618
+
"owner": "XurxoMF",
619
+
"repo": "vs-launcher"
620
+
},
621
+
"pre_releases": false,
622
+
"version_upper_bound": null,
623
+
"release_prefix": null,
624
+
"submodules": false,
625
+
"version": "1.5.8",
626
+
"revision": "2068a31948396ca7c0a1b0efbc805ba7e99cdd96",
627
+
"url": "https://api.github.com/repos/XurxoMF/vs-launcher/tarball/refs/tags/1.5.8",
628
+
"hash": "sha256-SYpZSFyavD19sGuQhUrmVAbzx2Hs5nupsu2DkCymT4w="
629
+
},
630
+
"walker": {
631
+
"type": "GitRelease",
632
+
"repository": {
633
+
"type": "GitHub",
634
+
"owner": "abenz1267",
635
+
"repo": "walker"
636
+
},
637
+
"pre_releases": false,
638
+
"version_upper_bound": null,
639
+
"release_prefix": null,
640
+
"submodules": false,
641
+
"version": "v2.10.0",
642
+
"revision": "ce131301bbbdecde37bf76bf8478e8af06ff3792",
643
+
"url": "https://api.github.com/repos/abenz1267/walker/tarball/refs/tags/v2.10.0",
644
+
"hash": "sha256-72+WE0RGSW8TgzPijHU6TtLWfMb0G7ojraM5UifTLVg="
645
+
}
646
+
},
647
+
"version": 7
648
+
}
+3
npins/sources.json.license
+3
npins/sources.json.license
-36
packetmix/ci.nix
-36
packetmix/ci.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
let
6
-
base = import ./nilla.nix;
7
-
project = base.extend {
8
-
modules = [
9
-
(
10
-
{ config, lib, ... }:
11
-
{
12
-
config.inputs = (
13
-
builtins.mapAttrs (
14
-
name: value:
15
-
if value ? settings.configuration.allowUnfree then
16
-
{
17
-
settings.configuration = {
18
-
allowUnfree = false;
19
-
allowUnfreePredicate = (
20
-
x: (x ? meta.license) && (x.meta.license.shortName == "unfreeRedistributable")
21
-
); # As we push to a public cachix, we can't use non-redistributable unfree software in CI
22
-
};
23
-
}
24
-
else
25
-
{ }
26
-
) base.inputs
27
-
);
28
-
}
29
-
)
30
-
{
31
-
config.lib.ci = true;
32
-
}
33
-
];
34
-
};
35
-
in
36
-
project.config // { inherit (project) extend; }
+4
-1
packetmix/homes/catppuccin/catppuccin.nix
+4
-1
packetmix/homes/catppuccin/catppuccin.nix
···
4
4
5
5
{ project, lib, ... }:
6
6
{
7
-
imports = [ project.inputs.catppuccin.result.homeModules.catppuccin ];
7
+
imports = [
8
+
project.inputs.catppuccin.result.homeModules.catppuccin
9
+
];
8
10
config.catppuccin.enable = true;
11
+
config.catppuccin.delta.enable = lib.mkForce false;
9
12
10
13
config.catppuccin.cursors.enable = true;
11
14
config.home.pointerCursor.enable = true;
-1
packetmix/homes/coded/catppuccin.nix
-1
packetmix/homes/coded/catppuccin.nix
+8
packetmix/homes/coded/games.nix
+8
packetmix/homes/coded/games.nix
+4
-15
packetmix/homes/coded/niri.nix
+4
-15
packetmix/homes/coded/niri.nix
···
5
5
{
6
6
ingredient.niri.enable = true;
7
7
8
-
ingredient.niri.niri.timers = {
8
+
ingredient.niri.swayidle.timers = {
9
9
lock = 900;
10
10
sleep = 1800;
11
11
};
···
22
22
"DP-1" = {
23
23
position = {
24
24
x = 5760;
25
-
y = 2160;
25
+
y = 0;
26
26
};
27
27
mode = {
28
28
width = 3840;
···
34
34
"DP-2" = {
35
35
position = {
36
36
x = 1920;
37
-
y = 2160;
37
+
y = 0;
38
38
};
39
39
mode = {
40
40
width = 3840;
···
43
43
};
44
44
scale = 1;
45
45
};
46
-
"LG Electronics LG TV SSCR2 0x01010101" = {
47
-
position = {
48
-
x = 1920;
49
-
y = 0;
50
-
};
51
-
mode = {
52
-
width = 3840;
53
-
height = 2160;
54
-
refresh = 60.;
55
-
};
56
-
};
57
46
"Dell Inc. DELL S2422HG BTTCK83" = {
58
47
position = {
59
48
x = 0;
60
-
y = 2700;
49
+
y = 540;
61
50
};
62
51
mode = {
63
52
width = 1920;
+9
packetmix/homes/collabora/tailscale.nix
+9
packetmix/homes/collabora/tailscale.nix
···
1
+
# SPDX-FileCopyrightText: 2025 Collabora Productivity Limited
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, ... }:
6
+
{
7
+
# system shellAliases are often disabled in hm-managed shell profiles... so we should copy the alias here too
8
+
home.shellAliases.tailscale-collabora = "${pkgs.tailscale}/bin/tailscale --socket /var/run/tailscale/tailscaled-collabora.sock";
9
+
}
-1
packetmix/homes/common/gtk.nix
-1
packetmix/homes/common/gtk.nix
-1
packetmix/homes/common/helix.nix
-1
packetmix/homes/common/helix.nix
+8
packetmix/homes/common/thunderbird.nix
+8
packetmix/homes/common/thunderbird.nix
-24
packetmix/homes/default.nix
-24
packetmix/homes/default.nix
···
3
3
#
4
4
# SPDX-License-Identifier: MIT
5
5
6
-
{ config, ... }:
7
-
let
8
-
nixpkgs = config.inputs.nixpkgs.result;
9
-
in
10
6
{
11
7
config.homes."maya:x86_64-linux" = {
12
8
modules = [
···
77
73
{
78
74
home.stateVersion = "25.05";
79
75
home.homeDirectory = "/home/coded";
80
-
}
81
-
];
82
-
ingredients = [
83
-
"catppuccin"
84
-
"development"
85
-
"espanso"
86
-
"freshlybakedcake"
87
-
"gaming"
88
-
"nix-index"
89
-
"remote"
90
-
];
91
-
args = {
92
-
system = "x86_64-linux";
93
-
};
94
-
};
95
-
config.homes."pinea:x86_64-linux" = {
96
-
modules = [
97
-
{
98
-
home.stateVersion = "25.05";
99
-
home.homeDirectory = "/home/pinea";
100
76
}
101
77
];
102
78
ingredients = [
-2
packetmix/homes/development/helix.nix
-2
packetmix/homes/development/helix.nix
+53
-44
packetmix/homes/development/jujutsu.nix
+53
-44
packetmix/homes/development/jujutsu.nix
···
24
24
ingredient.scriptfs.enable = true; # used for signing configuration
25
25
programs.jujutsu = {
26
26
enable = true;
27
-
package = project.packages.jujutsu.result.${system};
27
+
package = project.inputs.nixos-unstable.result.${system}.jujutsu;
28
28
settings = {
29
29
aliases = {
30
30
init = [
···
127
127
fi
128
128
129
129
BEFORE_TOP=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet $BEFORE_REVSET)
130
-
BEFORE_BOTTOM=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet "back($BEFORE_REVSET, $BEFORE_LENGTH)")
130
+
BEFORE_BOTTOM=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet "back($BEFORE_REVSET, $(($BEFORE_LENGTH - 1)))")
131
131
132
132
AFTER_TOP=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet $AFTER_REVSET)
133
-
AFTER_BOTTOM=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet "back($AFTER_REVSET, $AFTER_LENGTH)")
133
+
AFTER_BOTTOM=$(${config.programs.jujutsu.package}/bin/jj show -T "self.commit_id()" --no-patch --quiet "back($AFTER_REVSET, $(($AFTER_LENGTH - 1)))")
134
134
135
135
${pkgs.git}/bin/git range-diff $BEFORE_BOTTOM~..$BEFORE_TOP $AFTER_BOTTOM~..$AFTER_TOP "$@"
136
136
'';
···
358
358
"here" = "reachable(@, trunk()..)";
359
359
"in(branch, matching)" = "matching & ::branch";
360
360
361
-
"back(revision, distance)" = "roots(ancestors(revision, distance))";
362
-
"fwd(revision, distance)" = "heads(decendants(revision, distance))";
361
+
"valued(n)" = "latest(root(), n)::"; # Returns all() if n >= 1 or none() if n == 0
362
+
"back(revision, distance)" =
363
+
"coalesce(~valued(distance) & revision, ancestors(revision-, distance) & ~ancestors(revision, distance))";
364
+
"fwd(revision, distance)" =
365
+
"coalesce(~valued(distance) & revision, descendants(revision+, distance) & ~descendants(revision, distance))";
366
+
"back(distance)" = "back(@, distance)";
367
+
"fwd(distance)" = "fwd(@, distance)";
363
368
364
369
"closest_bookmark(to)" = "heads(::to & bookmarks())";
365
370
"closest_pushable_allow_empty_desc(to)" = "heads(::to & mutable() & (~empty() | merges()))";
366
371
367
-
"main" = "coalesce(bookmarks(exact:'main'), bookmarks(exact:'master'))";
372
+
"main" = "coalesce(bookmarks(exact:'main'), bookmarks(exact:'master'), trunk())";
368
373
369
374
"series(tip, length)" = "back(tip, length)::tip";
370
375
};
···
403
408
signingScriptScriptFSPath;
404
409
};
405
410
snapshot.auto-track = "~(root-glob:'**/.envrc' | root-glob:'**/*.env' | root-glob:'**/.direnv/**/*')";
406
-
template-aliases.series_log = ''
407
-
if(root,
408
-
format_root_commit(self),
409
-
label(if(current_working_copy, "working_copy"),
410
-
concat(
411
-
if(current_working_copy, label("op_log current_operation id", "@"),
412
-
if(self.contained_in("..@"), label("diff added", "-"),
413
-
label("diff removed", "+")
414
-
)),
415
-
" ",
416
-
separate(" ",
417
-
format_short_change_id_with_hidden_and_divergent_info(self),
418
-
format_short_commit_id(commit_id),
419
-
git_head,
420
-
if(conflict, label("conflict", "conflict")),
421
-
) ++ " ",
422
-
separate(" ",
423
-
if(self.contained_in("@.."),
424
-
label("rest", separate(" ",
425
-
if(empty, "(empty)"),
426
-
if(description,
427
-
description.first_line(),
428
-
"(no description set)",
429
-
),
430
-
)),
431
-
separate(" ",
432
-
if(empty, label("empty", "(empty)")),
433
-
if(description,
434
-
description.first_line(),
435
-
label(if(empty, "empty"), description_placeholder),
436
-
),
437
-
)
438
-
),
439
-
if(!(current_working_copy || parents), "\033[22m")
440
-
) ++ "\n",
441
-
),
411
+
template-aliases = {
412
+
"format_timestamp(timestamp)" =
413
+
''timestamp.local().format("%Y-%m-%d %H:%M:%S") ++ " (" ++ timestamp.ago() ++ ")"'';
414
+
series_log = ''
415
+
if(root,
416
+
format_root_commit(self),
417
+
label(if(current_working_copy, "working_copy"),
418
+
concat(
419
+
if(current_working_copy, label("op_log current_operation id", "@"),
420
+
if(self.contained_in("..@"), label("diff added", "-"),
421
+
label("diff removed", "+")
422
+
)),
423
+
" ",
424
+
separate(" ",
425
+
format_short_change_id_with_hidden_and_divergent_info(self),
426
+
format_short_commit_id(commit_id),
427
+
git_head,
428
+
if(conflict, label("conflict", "conflict")),
429
+
) ++ " ",
430
+
separate(" ",
431
+
if(self.contained_in("@.."),
432
+
label("rest", separate(" ",
433
+
if(empty, "(empty)"),
434
+
if(description,
435
+
description.first_line(),
436
+
"(no description set)",
437
+
),
438
+
)),
439
+
separate(" ",
440
+
if(empty, label("empty", "(empty)")),
441
+
if(description,
442
+
description.first_line(),
443
+
label(if(empty, "empty"), description_placeholder),
444
+
),
445
+
)
446
+
),
447
+
if(!(current_working_copy || parents), "\033[22m")
448
+
) ++ "\n",
449
+
),
450
+
)
442
451
)
443
-
)
444
-
'';
452
+
'';
453
+
};
445
454
templates = {
446
455
git_push_bookmark = "'private/${config.home.username}/push-' ++ change_id.short()";
447
456
commit_trailers = ''
-1
packetmix/homes/development/tmux.nix
-1
packetmix/homes/development/tmux.nix
+4
-1
packetmix/homes/espanso/espanso.nix
+4
-1
packetmix/homes/espanso/espanso.nix
+3
packetmix/homes/freshlybakedcake+development/ssh.nix
+3
packetmix/homes/freshlybakedcake+development/ssh.nix
···
76
76
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHYUFynzvO9dfLqn7hssLIeHBp/y5V1lKLyCnDmThgDg boltless.me" = [
77
77
"boltlessengineer@proton.me" # Sourced by Coded from Tangled
78
78
];
79
+
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGUkKr2wgFDgkU1VbwPIbBS8eL6Z8imAGaY4NUVrVNO7" = [
80
+
"kate@provokateurin.de" # Sourced by minion from GitHub
81
+
];
79
82
};
80
83
}
-2
packetmix/homes/maya/niri.nix
-2
packetmix/homes/maya/niri.nix
+21
packetmix/homes/minion/atuin.nix
+21
packetmix/homes/minion/atuin.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
programs.atuin = {
7
+
enable = true; # We're using z4h so we don't have the problems with garbage...
8
+
flags = [ "--disable-up-arrow" ];
9
+
settings = {
10
+
dialect = "uk";
11
+
exit_mode = "return-query";
12
+
inline_height = 0;
13
+
style = "auto";
14
+
update_check = false;
15
+
};
16
+
};
17
+
18
+
clicks.storage.impermanence.persist.directories = [
19
+
".local/share/atuin"
20
+
];
21
+
}
+20
-4
packetmix/homes/minion/espanso.nix
+20
-4
packetmix/homes/minion/espanso.nix
···
14
14
replace = "sudo mount --bind /nix systemplate/nix";
15
15
}
16
16
{
17
-
trigger = ":work";
18
-
replace = "Skyler Grey <skyler.grey@collabora.com>";
19
-
}
20
-
{
21
17
trigger = "SJIC";
22
18
replace = "St John's Innovation Center";
23
19
}
···
30
26
replace = "productivity: r&d-productivity: project-admin: internal-meeting: {{name}}-meeting";
31
27
}
32
28
{
29
+
trigger = ":tadmin";
30
+
replace = "collabora: internal: admin: cp-admin: ";
31
+
}
32
+
{
33
33
trigger = ":tevent";
34
34
replace = "collabora: business-development: event-attendance: event-attendee: ";
35
+
}
36
+
{
37
+
trigger = ":tist";
38
+
replace = "collabora: business-development: event-attendance: event-attendee: IST/41 committee";
35
39
}
36
40
{
37
41
trigger = ":tmail";
···
90
94
replace = "@companies.starrysky.fyi";
91
95
}
92
96
{
97
+
regex = ''@:co(c\.|companies)'';
98
+
replace = "@companies.thecoded.prof";
99
+
}
100
+
{
93
101
regex = ''sky@a(?P<whitespace>\s)'';
94
102
replace = "sky@a.starrysky.fyi{{whitespace}}";
103
+
}
104
+
{
105
+
trigger = ":co: ";
106
+
replace = "Co-Authored-By: ";
107
+
}
108
+
{
109
+
trigger = ":co:coded";
110
+
replace = "Co-Authored-By: Samuel Shuert <me@thecoded.prof>";
95
111
}
96
112
{
97
113
trigger = ":co:me";
+10
packetmix/homes/minion/flatpak.nix
+10
packetmix/homes/minion/flatpak.nix
+13
packetmix/homes/minion/helix.nix
+13
packetmix/homes/minion/helix.nix
···
15
15
"ui.virtual.whitespace" = "surface0"; # The default catppuccin_latte theme displays rendered whitespace way too harshly...
16
16
};
17
17
};
18
+
19
+
languages = {
20
+
language = [
21
+
{
22
+
name = "rust";
23
+
}
24
+
];
25
+
language-server.rust-analyzer.config = {
26
+
cargo.allFeatures = true;
27
+
diagnostics.disabled = [ "proc-macro-disabled" ];
28
+
procMacro.ignored.leptos_macro = [ "server" ];
29
+
};
30
+
};
18
31
};
19
32
}
+4
-4
packetmix/homes/minion/jujutsu.nix
+4
-4
packetmix/homes/minion/jujutsu.nix
···
11
11
"--"
12
12
"sh"
13
13
"-c"
14
-
"jj config set --repo user.email skyler.grey@collabora.com 2>/dev/null && jj describe --reset-author --no-edit"
14
+
"jj config set --repo user.email skyler.grey@collabora.com 2>/dev/null && jj metaedit --update-author"
15
15
];
16
16
clicks = [
17
17
"util"
···
19
19
"--"
20
20
"sh"
21
21
"-c"
22
-
"jj config set --repo user.email minion@clicks.codes 2>/dev/null && jj describe --reset-author --no-edit"
22
+
"jj config set --repo user.email minion@clicks.codes 2>/dev/null && jj metaedit --update-author"
23
23
];
24
24
personal = [
25
25
"util"
···
27
27
"--"
28
28
"sh"
29
29
"-c"
30
-
"jj config set --repo user.email sky@a.starrysky.fyi 2>/dev/null && jj describe --reset-author --no-edit"
30
+
"jj config set --repo user.email sky@a.starrysky.fyi 2>/dev/null && jj metaedit --update-author"
31
31
];
32
32
freshly = [
33
33
"util"
···
35
35
"--"
36
36
"sh"
37
37
"-c"
38
-
"jj config set --repo user.email minion@freshlybakedca.ke 2>/dev/null && jj describe --reset-author --no-edit"
38
+
"jj config set --repo user.email minion@freshlybakedca.ke 2>/dev/null && jj metaedit --update-author"
39
39
];
40
40
};
41
41
git.sign-on-push = true;
+7
-3
packetmix/homes/minion/niri.nix
+7
-3
packetmix/homes/minion/niri.nix
···
3
3
# SPDX-License-Identifier: MIT
4
4
5
5
{
6
-
project,
7
-
config,
8
6
pkgs,
9
-
lib,
10
7
...
11
8
}:
12
9
{
···
59
56
position = {
60
57
x = 3640;
61
58
y = 300;
59
+
};
60
+
};
61
+
"Philips Consumer Electronics Company Philips FTV 0x01010101" = {
62
+
# Cambridge Office meeting room monitor
63
+
position = {
64
+
x = 2640;
65
+
y = 1560;
62
66
};
63
67
};
64
68
};
+1906
packetmix/homes/minion/zsh/p10k.zsh
+1906
packetmix/homes/minion/zsh/p10k.zsh
···
1
+
# SPDX-FileCopyrightText: 2009-2024 Robby Russell and contributors (see https://github.com/robbyrussell/oh-my-zsh/contributors)
2
+
# SPDX-FileCopyrightText: 2014-2017 Ben Hilburn <bhilburn@gmail.com>
3
+
# SPDX-FileCopyrightText: 2019 Roman Perepelitsa <roman.perepelitsa@gmail.com> and contributors (see https://github.com/romkatv/powerlevel10k/contributors)
4
+
# SPDX-FileCopyrightText: 2025 Andrรฉ Arko
5
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
6
+
#
7
+
# SPDX-License-Identifier: MIT
8
+
9
+
# Generated by Powerlevel10k configuration wizard on 2025-09-15 at 09:29 UTC.
10
+
# Based on romkatv/powerlevel10k/config/p10k-lean.zsh.
11
+
# Wizard options: nerdfont-v3 + powerline, small icons, unicode, lean, 24h time,
12
+
# 2 lines, dotted, no frame, darkest-ornaments, sparse, few icons, concise,
13
+
# instant_prompt=auto-quiet.
14
+
# Type `p10k configure` to generate another config.
15
+
#
16
+
# Config for Powerlevel10k with lean prompt style. Type `p10k configure` to generate
17
+
# your own config based on it.
18
+
#
19
+
# Tip: Looking for a nice color? Here's a one-liner to print colormap.
20
+
#
21
+
# for i in {0..255}; do print -Pn "%K{$i} %k%F{$i}${(l:3::0:)i}%f " ${${(M)$((i%6)):#3}:+$'\n'}; done
22
+
23
+
# Temporarily change options.
24
+
'builtin' 'local' '-a' 'p10k_config_opts'
25
+
[[ ! -o 'aliases' ]] || p10k_config_opts+=('aliases')
26
+
[[ ! -o 'sh_glob' ]] || p10k_config_opts+=('sh_glob')
27
+
[[ ! -o 'no_brace_expand' ]] || p10k_config_opts+=('no_brace_expand')
28
+
'builtin' 'setopt' 'no_aliases' 'no_sh_glob' 'brace_expand'
29
+
30
+
() {
31
+
emulate -L zsh -o extended_glob
32
+
33
+
# Unset all configuration options. This allows you to apply configuration changes without
34
+
# restarting zsh. Edit ~/.p10k.zsh and type `source ~/.p10k.zsh`.
35
+
unset -m '(POWERLEVEL9K_*|DEFAULT_USER)~POWERLEVEL9K_GITSTATUS_DIR'
36
+
37
+
# Zsh >= 5.1 is required.
38
+
[[ $ZSH_VERSION == (5.<1->*|<6->.*) ]] || return
39
+
40
+
# The list of segments shown on the left. Fill it with the most important segments.
41
+
typeset -g POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(
42
+
# =========================[ Line #1 ]=========================
43
+
# os_icon # os identifier
44
+
dir # current directory
45
+
vcs # git status
46
+
jj # jujutsu status
47
+
# =========================[ Line #2 ]=========================
48
+
newline # \n
49
+
prompt_char # prompt symbol
50
+
)
51
+
52
+
# The list of segments shown on the right. Fill it with less important segments.
53
+
# Right prompt on the last prompt line (where you are typing your commands) gets
54
+
# automatically hidden when the input line reaches it. Right prompt above the
55
+
# last prompt line gets hidden if it would overlap with left prompt.
56
+
typeset -g POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(
57
+
# =========================[ Line #1 ]=========================
58
+
status # exit code of the last command
59
+
command_execution_time # duration of the last command
60
+
background_jobs # presence of background jobs
61
+
direnv # direnv status (https://direnv.net/)
62
+
asdf # asdf version manager (https://github.com/asdf-vm/asdf)
63
+
virtualenv # python virtual environment (https://docs.python.org/3/library/venv.html)
64
+
anaconda # conda environment (https://conda.io/)
65
+
pyenv # python environment (https://github.com/pyenv/pyenv)
66
+
goenv # go environment (https://github.com/syndbg/goenv)
67
+
nodenv # node.js version from nodenv (https://github.com/nodenv/nodenv)
68
+
nvm # node.js version from nvm (https://github.com/nvm-sh/nvm)
69
+
nodeenv # node.js environment (https://github.com/ekalinin/nodeenv)
70
+
# node_version # node.js version
71
+
# go_version # go version (https://golang.org)
72
+
# rust_version # rustc version (https://www.rust-lang.org)
73
+
# dotnet_version # .NET version (https://dotnet.microsoft.com)
74
+
# php_version # php version (https://www.php.net/)
75
+
# laravel_version # laravel php framework version (https://laravel.com/)
76
+
# java_version # java version (https://www.java.com/)
77
+
# package # name@version from package.json (https://docs.npmjs.com/files/package.json)
78
+
rbenv # ruby version from rbenv (https://github.com/rbenv/rbenv)
79
+
rvm # ruby version from rvm (https://rvm.io)
80
+
fvm # flutter version management (https://github.com/leoafarias/fvm)
81
+
luaenv # lua version from luaenv (https://github.com/cehoffman/luaenv)
82
+
jenv # java version from jenv (https://github.com/jenv/jenv)
83
+
plenv # perl version from plenv (https://github.com/tokuhirom/plenv)
84
+
perlbrew # perl version from perlbrew (https://github.com/gugod/App-perlbrew)
85
+
phpenv # php version from phpenv (https://github.com/phpenv/phpenv)
86
+
scalaenv # scala version from scalaenv (https://github.com/scalaenv/scalaenv)
87
+
haskell_stack # haskell version from stack (https://haskellstack.org/)
88
+
kubecontext # current kubernetes context (https://kubernetes.io/)
89
+
terraform # terraform workspace (https://www.terraform.io)
90
+
# terraform_version # terraform version (https://www.terraform.io)
91
+
aws # aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html)
92
+
aws_eb_env # aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/)
93
+
azure # azure account name (https://docs.microsoft.com/en-us/cli/azure)
94
+
gcloud # google cloud cli account and project (https://cloud.google.com/)
95
+
google_app_cred # google application credentials (https://cloud.google.com/docs/authentication/production)
96
+
toolbox # toolbox name (https://github.com/containers/toolbox)
97
+
context # user@hostname
98
+
nordvpn # nordvpn connection status, linux only (https://nordvpn.com/)
99
+
ranger # ranger shell (https://github.com/ranger/ranger)
100
+
yazi # yazi shell (https://github.com/sxyazi/yazi)
101
+
nnn # nnn shell (https://github.com/jarun/nnn)
102
+
lf # lf shell (https://github.com/gokcehan/lf)
103
+
xplr # xplr shell (https://github.com/sayanarijit/xplr)
104
+
vim_shell # vim shell indicator (:sh)
105
+
midnight_commander # midnight commander shell (https://midnight-commander.org/)
106
+
nix_shell # nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html)
107
+
chezmoi_shell # chezmoi shell (https://www.chezmoi.io/)
108
+
# vpn_ip # virtual private network indicator
109
+
# load # CPU load
110
+
# disk_usage # disk usage
111
+
# ram # free RAM
112
+
# swap # used swap
113
+
todo # todo items (https://github.com/todotxt/todo.txt-cli)
114
+
timewarrior # timewarrior tracking status (https://timewarrior.net/)
115
+
taskwarrior # taskwarrior task count (https://taskwarrior.org/)
116
+
per_directory_history # Oh My Zsh per-directory-history local/global indicator
117
+
# cpu_arch # CPU architecture
118
+
time # current time
119
+
# =========================[ Line #2 ]=========================
120
+
newline
121
+
# ip # ip address and bandwidth usage for a specified network interface
122
+
# public_ip # public IP address
123
+
# proxy # system-wide http/https/ftp proxy
124
+
# battery # internal battery
125
+
# wifi # wifi speed
126
+
# example # example user-defined segment (see prompt_example function below)
127
+
)
128
+
129
+
# Defines character set used by powerlevel10k. It's best to let `p10k configure` set it for you.
130
+
typeset -g POWERLEVEL9K_MODE=nerdfont-v3
131
+
# When set to `moderate`, some icons will have an extra space after them. This is meant to avoid
132
+
# icon overlap when using non-monospace fonts. When set to `none`, spaces are not added.
133
+
typeset -g POWERLEVEL9K_ICON_PADDING=none
134
+
135
+
# Basic style options that define the overall look of your prompt. You probably don't want to
136
+
# change them.
137
+
typeset -g POWERLEVEL9K_BACKGROUND= # transparent background
138
+
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_{LEFT,RIGHT}_WHITESPACE= # no surrounding whitespace
139
+
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SUBSEGMENT_SEPARATOR=' ' # separate segments with a space
140
+
typeset -g POWERLEVEL9K_{LEFT,RIGHT}_SEGMENT_SEPARATOR= # no end-of-line symbol
141
+
142
+
# When set to true, icons appear before content on both sides of the prompt. When set
143
+
# to false, icons go after content. If empty or not set, icons go before content in the left
144
+
# prompt and after content in the right prompt.
145
+
#
146
+
# You can also override it for a specific segment:
147
+
#
148
+
# POWERLEVEL9K_STATUS_ICON_BEFORE_CONTENT=false
149
+
#
150
+
# Or for a specific segment in specific state:
151
+
#
152
+
# POWERLEVEL9K_DIR_NOT_WRITABLE_ICON_BEFORE_CONTENT=false
153
+
typeset -g POWERLEVEL9K_ICON_BEFORE_CONTENT=true
154
+
155
+
# Add an empty line before each prompt.
156
+
typeset -g POWERLEVEL9K_PROMPT_ADD_NEWLINE=true
157
+
158
+
# Connect left prompt lines with these symbols.
159
+
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=
160
+
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_PREFIX=
161
+
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX=
162
+
# Connect right prompt lines with these symbols.
163
+
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_SUFFIX=
164
+
typeset -g POWERLEVEL9K_MULTILINE_NEWLINE_PROMPT_SUFFIX=
165
+
typeset -g POWERLEVEL9K_MULTILINE_LAST_PROMPT_SUFFIX=
166
+
167
+
# The left end of left prompt.
168
+
typeset -g POWERLEVEL9K_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL=
169
+
# The right end of right prompt.
170
+
typeset -g POWERLEVEL9K_RIGHT_PROMPT_LAST_SEGMENT_END_SYMBOL=
171
+
172
+
# Ruler, a.k.a. the horizontal line before each prompt. If you set it to true, you'll
173
+
# probably want to set POWERLEVEL9K_PROMPT_ADD_NEWLINE=false above and
174
+
# POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR=' ' below.
175
+
typeset -g POWERLEVEL9K_SHOW_RULER=false
176
+
typeset -g POWERLEVEL9K_RULER_CHAR='โ' # reasonable alternative: 'ยท'
177
+
typeset -g POWERLEVEL9K_RULER_FOREGROUND=238
178
+
179
+
# Filler between left and right prompt on the first prompt line. You can set it to 'ยท' or 'โ'
180
+
# to make it easier to see the alignment between left and right prompt and to separate prompt
181
+
# from command output. It serves the same purpose as ruler (see above) without increasing
182
+
# the number of prompt lines. You'll probably want to set POWERLEVEL9K_SHOW_RULER=false
183
+
# if using this. You might also like POWERLEVEL9K_PROMPT_ADD_NEWLINE=false for more compact
184
+
# prompt.
185
+
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR='ยท'
186
+
if [[ $POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_CHAR != ' ' ]]; then
187
+
# The color of the filler.
188
+
typeset -g POWERLEVEL9K_MULTILINE_FIRST_PROMPT_GAP_FOREGROUND=015
189
+
# Add a space between the end of left prompt and the filler.
190
+
typeset -g POWERLEVEL9K_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL=' '
191
+
# Add a space between the filler and the start of right prompt.
192
+
typeset -g POWERLEVEL9K_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL=' '
193
+
# Start filler from the edge of the screen if there are no left segments on the first line.
194
+
typeset -g POWERLEVEL9K_EMPTY_LINE_LEFT_PROMPT_FIRST_SEGMENT_END_SYMBOL='%{%}'
195
+
# End filler on the edge of the screen if there are no right segments on the first line.
196
+
typeset -g POWERLEVEL9K_EMPTY_LINE_RIGHT_PROMPT_FIRST_SEGMENT_START_SYMBOL='%{%}'
197
+
fi
198
+
199
+
#################################[ os_icon: os identifier ]##################################
200
+
# OS identifier color.
201
+
typeset -g POWERLEVEL9K_OS_ICON_FOREGROUND=
202
+
# Custom icon.
203
+
# typeset -g POWERLEVEL9K_OS_ICON_CONTENT_EXPANSION='โญ'
204
+
205
+
################################[ prompt_char: prompt symbol ]################################
206
+
# Grey prompt symbol if the last command succeeded.
207
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_OK_{VIINS,VICMD,VIVIS,VIOWR}_FOREGROUND=008
208
+
# Red prompt symbol if the last command failed.
209
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_ERROR_{VIINS,VICMD,VIVIS,VIOWR}_FOREGROUND=001
210
+
# Default prompt symbol.
211
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIINS_CONTENT_EXPANSION='$'
212
+
# Prompt symbol in command vi mode.
213
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VICMD_CONTENT_EXPANSION='โฎ'
214
+
# Prompt symbol in visual vi mode.
215
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIVIS_CONTENT_EXPANSION='V'
216
+
# Prompt symbol in overwrite vi mode.
217
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_{OK,ERROR}_VIOWR_CONTENT_EXPANSION='โถ'
218
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_OVERWRITE_STATE=true
219
+
# No line terminator if prompt_char is the last segment.
220
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_LEFT_PROMPT_LAST_SEGMENT_END_SYMBOL=''
221
+
# No line introducer if prompt_char is the first segment.
222
+
typeset -g POWERLEVEL9K_PROMPT_CHAR_LEFT_PROMPT_FIRST_SEGMENT_START_SYMBOL=
223
+
224
+
##################################[ dir: current directory ]##################################
225
+
# Default current directory color.
226
+
typeset -g POWERLEVEL9K_DIR_FOREGROUND=006
227
+
# If directory is too long, shorten some of its segments to the shortest possible unique
228
+
# prefix. The shortened directory can be tab-completed to the original.
229
+
typeset -g POWERLEVEL9K_SHORTEN_STRATEGY=truncate_to_unique
230
+
# Replace removed segment suffixes with this symbol.
231
+
typeset -g POWERLEVEL9K_SHORTEN_DELIMITER=
232
+
# Color of the shortened directory segments.
233
+
typeset -g POWERLEVEL9K_DIR_SHORTENED_FOREGROUND=007
234
+
# Color of the anchor directory segments. Anchor segments are never shortened. The first
235
+
# segment is always an anchor.
236
+
typeset -g POWERLEVEL9K_DIR_ANCHOR_FOREGROUND=012
237
+
# Display anchor directory segments in bold.
238
+
typeset -g POWERLEVEL9K_DIR_ANCHOR_BOLD=true
239
+
# Don't shorten directories that contain any of these files. They are anchors.
240
+
local anchor_files=(
241
+
.bzr
242
+
.citc
243
+
.git
244
+
.jj
245
+
.hg
246
+
.node-version
247
+
.python-version
248
+
.go-version
249
+
.ruby-version
250
+
.lua-version
251
+
.java-version
252
+
.perl-version
253
+
.php-version
254
+
.tool-versions
255
+
.mise.toml
256
+
.shorten_folder_marker
257
+
.svn
258
+
.terraform
259
+
CVS
260
+
Cargo.toml
261
+
composer.json
262
+
go.mod
263
+
package.json
264
+
stack.yaml
265
+
)
266
+
typeset -g POWERLEVEL9K_SHORTEN_FOLDER_MARKER="(${(j:|:)anchor_files})"
267
+
# If set to "first" ("last"), remove everything before the first (last) subdirectory that contains
268
+
# files matching $POWERLEVEL9K_SHORTEN_FOLDER_MARKER. For example, when the current directory is
269
+
# /foo/bar/git_repo/nested_git_repo/baz, prompt will display git_repo/nested_git_repo/baz (first)
270
+
# or nested_git_repo/baz (last). This assumes that git_repo and nested_git_repo contain markers
271
+
# and other directories don't.
272
+
#
273
+
# Optionally, "first" and "last" can be followed by ":<offset>" where <offset> is an integer.
274
+
# This moves the truncation point to the right (positive offset) or to the left (negative offset)
275
+
# relative to the marker. Plain "first" and "last" are equivalent to "first:0" and "last:0"
276
+
# respectively.
277
+
typeset -g POWERLEVEL9K_DIR_TRUNCATE_BEFORE_MARKER=false
278
+
# Don't shorten this many last directory segments. They are anchors.
279
+
typeset -g POWERLEVEL9K_SHORTEN_DIR_LENGTH=1
280
+
# Shorten directory if it's longer than this even if there is space for it. The value can
281
+
# be either absolute (e.g., '80') or a percentage of terminal width (e.g, '50%'). If empty,
282
+
# directory will be shortened only when prompt doesn't fit or when other parameters demand it
283
+
# (see POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS and POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT below).
284
+
# If set to `0`, directory will always be shortened to its minimum length.
285
+
typeset -g POWERLEVEL9K_DIR_MAX_LENGTH=80
286
+
# When `dir` segment is on the last prompt line, try to shorten it enough to leave at least this
287
+
# many columns for typing commands.
288
+
typeset -g POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS=40
289
+
# When `dir` segment is on the last prompt line, try to shorten it enough to leave at least
290
+
# COLUMNS * POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT * 0.01 columns for typing commands.
291
+
typeset -g POWERLEVEL9K_DIR_MIN_COMMAND_COLUMNS_PCT=50
292
+
# If set to true, embed a hyperlink into the directory. Useful for quickly
293
+
# opening a directory in the file manager simply by clicking the link.
294
+
# Can also be handy when the directory is shortened, as it allows you to see
295
+
# the full directory that was used in previous commands.
296
+
typeset -g POWERLEVEL9K_DIR_HYPERLINK=false
297
+
298
+
# Enable special styling for non-writable and non-existent directories. See POWERLEVEL9K_LOCK_ICON
299
+
# and POWERLEVEL9K_DIR_CLASSES below.
300
+
typeset -g POWERLEVEL9K_DIR_SHOW_WRITABLE=v3
301
+
302
+
# The default icon shown next to non-writable and non-existent directories when
303
+
# POWERLEVEL9K_DIR_SHOW_WRITABLE is set to v3.
304
+
# typeset -g POWERLEVEL9K_LOCK_ICON='โญ'
305
+
306
+
# POWERLEVEL9K_DIR_CLASSES allows you to specify custom icons and colors for different
307
+
# directories. It must be an array with 3 * N elements. Each triplet consists of:
308
+
#
309
+
# 1. A pattern against which the current directory ($PWD) is matched. Matching is done with
310
+
# extended_glob option enabled.
311
+
# 2. Directory class for the purpose of styling.
312
+
# 3. An empty string.
313
+
#
314
+
# Triplets are tried in order. The first triplet whose pattern matches $PWD wins.
315
+
#
316
+
# If POWERLEVEL9K_DIR_SHOW_WRITABLE is set to v3, non-writable and non-existent directories
317
+
# acquire class suffix _NOT_WRITABLE and NON_EXISTENT respectively.
318
+
#
319
+
# For example, given these settings:
320
+
#
321
+
# typeset -g POWERLEVEL9K_DIR_CLASSES=(
322
+
# '~/work(|/*)' WORK ''
323
+
# '~(|/*)' HOME ''
324
+
# '*' DEFAULT '')
325
+
#
326
+
# Whenever the current directory is ~/work or a subdirectory of ~/work, it gets styled with one
327
+
# of the following classes depending on its writability and existence: WORK, WORK_NOT_WRITABLE or
328
+
# WORK_NON_EXISTENT.
329
+
#
330
+
# Simply assigning classes to directories doesn't have any visible effects. It merely gives you an
331
+
# option to define custom colors and icons for different directory classes.
332
+
#
333
+
# # Styling for WORK.
334
+
# typeset -g POWERLEVEL9K_DIR_WORK_VISUAL_IDENTIFIER_EXPANSION='โญ'
335
+
# typeset -g POWERLEVEL9K_DIR_WORK_FOREGROUND=31
336
+
# typeset -g POWERLEVEL9K_DIR_WORK_SHORTENED_FOREGROUND=103
337
+
# typeset -g POWERLEVEL9K_DIR_WORK_ANCHOR_FOREGROUND=39
338
+
#
339
+
# # Styling for WORK_NOT_WRITABLE.
340
+
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_VISUAL_IDENTIFIER_EXPANSION='โญ'
341
+
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND=31
342
+
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_SHORTENED_FOREGROUND=103
343
+
# typeset -g POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_ANCHOR_FOREGROUND=39
344
+
#
345
+
# # Styling for WORK_NON_EXISTENT.
346
+
# typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_VISUAL_IDENTIFIER_EXPANSION='โญ'
347
+
# typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_FOREGROUND=31
348
+
# typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_SHORTENED_FOREGROUND=103
349
+
# typeset -g POWERLEVEL9K_DIR_WORK_NON_EXISTENT_ANCHOR_FOREGROUND=39
350
+
#
351
+
# If a styling parameter isn't explicitly defined for some class, it falls back to the classless
352
+
# parameter. For example, if POWERLEVEL9K_DIR_WORK_NOT_WRITABLE_FOREGROUND is not set, it falls
353
+
# back to POWERLEVEL9K_DIR_FOREGROUND.
354
+
#
355
+
typeset -g POWERLEVEL9K_DIR_CLASSES=()
356
+
357
+
# Custom prefix.
358
+
# typeset -g POWERLEVEL9K_DIR_PREFIX='%fin '
359
+
360
+
#####################################[ vcs: git status ]######################################
361
+
# Branch icon. Set this parameter to '\UE0A0 ' for the popular Powerline branch icon.
362
+
typeset -g POWERLEVEL9K_VCS_BRANCH_ICON=
363
+
364
+
# Untracked files icon. It's really a question mark, your font isn't broken.
365
+
# Change the value of this parameter to show a different icon.
366
+
typeset -g POWERLEVEL9K_VCS_UNTRACKED_ICON='?'
367
+
368
+
# Formatter for Git status.
369
+
#
370
+
# Example output: master wip โฃ42โก42 *42 merge ~42 +42 !42 ?42.
371
+
#
372
+
# You can edit the function to customize how Git status looks.
373
+
#
374
+
# VCS_STATUS_* parameters are set by gitstatus plugin. See reference:
375
+
# https://github.com/romkatv/gitstatus/blob/master/gitstatus.plugin.zsh.
376
+
function my_git_formatter() {
377
+
emulate -L zsh
378
+
379
+
if [[ -n ./(../)#(.jj)(#qN/) ]]; then
380
+
typeset -g my_git_format=""
381
+
return
382
+
fi
383
+
384
+
if [[ -n $P9K_CONTENT ]]; then
385
+
# If P9K_CONTENT is not empty, use it. It's either "loading" or from vcs_info (not from
386
+
# gitstatus plugin). VCS_STATUS_* parameters are not available in this case.
387
+
typeset -g my_git_format=$P9K_CONTENT
388
+
return
389
+
fi
390
+
391
+
if (( $1 )); then
392
+
# Styling for up-to-date Git status.
393
+
local meta='%f' # default foreground
394
+
local clean='%002F' # green foreground
395
+
local modified='%003F' # yellow foreground
396
+
local untracked='%004F' # blue foreground
397
+
local conflicted='%001F' # red foreground
398
+
else
399
+
# Styling for incomplete and stale Git status.
400
+
local meta='%007F' # grey foreground
401
+
local clean='%007F' # grey foreground
402
+
local modified='%007F' # grey foreground
403
+
local untracked='%007F' # grey foreground
404
+
local conflicted='%007F' # grey foreground
405
+
fi
406
+
407
+
local res
408
+
409
+
if [[ -n $VCS_STATUS_LOCAL_BRANCH ]]; then
410
+
local branch=${(V)VCS_STATUS_LOCAL_BRANCH}
411
+
# If local branch name is at most 32 characters long, show it in full.
412
+
# Otherwise show the first 12 โฆ the last 12.
413
+
# Tip: To always show local branch name in full without truncation, delete the next line.
414
+
(( $#branch > 32 )) && branch[13,-13]="โฆ" # <-- this line
415
+
res+="${clean}${(g::)POWERLEVEL9K_VCS_BRANCH_ICON}${branch//\%/%%}"
416
+
fi
417
+
418
+
if [[ -n $VCS_STATUS_TAG
419
+
# Show tag only if not on a branch.
420
+
# Tip: To always show tag, delete the next line.
421
+
&& -z $VCS_STATUS_LOCAL_BRANCH # <-- this line
422
+
]]; then
423
+
local tag=${(V)VCS_STATUS_TAG}
424
+
# If tag name is at most 32 characters long, show it in full.
425
+
# Otherwise show the first 12 โฆ the last 12.
426
+
# Tip: To always show tag name in full without truncation, delete the next line.
427
+
(( $#tag > 32 )) && tag[13,-13]="โฆ" # <-- this line
428
+
res+="${meta}#${clean}${tag//\%/%%}"
429
+
fi
430
+
431
+
# Display the current Git commit if there is no branch and no tag.
432
+
# Tip: To always display the current Git commit, delete the next line.
433
+
[[ -z $VCS_STATUS_LOCAL_BRANCH && -z $VCS_STATUS_TAG ]] && # <-- this line
434
+
res+="${meta}@${clean}${VCS_STATUS_COMMIT[1,8]}"
435
+
436
+
# Show tracking branch name if it differs from local branch.
437
+
if [[ -n ${VCS_STATUS_REMOTE_BRANCH:#$VCS_STATUS_LOCAL_BRANCH} ]]; then
438
+
res+="${meta}:${clean}${(V)VCS_STATUS_REMOTE_BRANCH//\%/%%}"
439
+
fi
440
+
441
+
# Display "wip" if the latest commit's summary contains "wip" or "WIP".
442
+
if [[ $VCS_STATUS_COMMIT_SUMMARY == (|*[^[:alnum:]])(wip|WIP)(|[^[:alnum:]]*) ]]; then
443
+
res+=" ${modified}wip"
444
+
fi
445
+
446
+
if (( VCS_STATUS_COMMITS_AHEAD || VCS_STATUS_COMMITS_BEHIND )); then
447
+
# โฃ42 if behind the remote.
448
+
(( VCS_STATUS_COMMITS_BEHIND )) && res+=" ${clean}โฃ${VCS_STATUS_COMMITS_BEHIND}"
449
+
# โก42 if ahead of the remote; no leading space if also behind the remote: โฃ42โก42.
450
+
(( VCS_STATUS_COMMITS_AHEAD && !VCS_STATUS_COMMITS_BEHIND )) && res+=" "
451
+
(( VCS_STATUS_COMMITS_AHEAD )) && res+="${clean}โก${VCS_STATUS_COMMITS_AHEAD}"
452
+
elif [[ -n $VCS_STATUS_REMOTE_BRANCH ]]; then
453
+
# Tip: Uncomment the next line to display '=' if up to date with the remote.
454
+
# res+=" ${clean}="
455
+
fi
456
+
457
+
# โ 42 if behind the push remote.
458
+
(( VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" ${clean}โ ${VCS_STATUS_PUSH_COMMITS_BEHIND}"
459
+
(( VCS_STATUS_PUSH_COMMITS_AHEAD && !VCS_STATUS_PUSH_COMMITS_BEHIND )) && res+=" "
460
+
# โข42 if ahead of the push remote; no leading space if also behind: โ 42โข42.
461
+
(( VCS_STATUS_PUSH_COMMITS_AHEAD )) && res+="${clean}โข${VCS_STATUS_PUSH_COMMITS_AHEAD}"
462
+
# *42 if have stashes.
463
+
(( VCS_STATUS_STASHES )) && res+=" ${clean}*${VCS_STATUS_STASHES}"
464
+
# 'merge' if the repo is in an unusual state.
465
+
[[ -n $VCS_STATUS_ACTION ]] && res+=" ${conflicted}${VCS_STATUS_ACTION}"
466
+
# ~42 if have merge conflicts.
467
+
(( VCS_STATUS_NUM_CONFLICTED )) && res+=" ${conflicted}~${VCS_STATUS_NUM_CONFLICTED}"
468
+
# +42 if have staged changes.
469
+
(( VCS_STATUS_NUM_STAGED )) && res+=" ${modified}+${VCS_STATUS_NUM_STAGED}"
470
+
# !42 if have unstaged changes.
471
+
(( VCS_STATUS_NUM_UNSTAGED )) && res+=" ${modified}!${VCS_STATUS_NUM_UNSTAGED}"
472
+
# ?42 if have untracked files. It's really a question mark, your font isn't broken.
473
+
# See POWERLEVEL9K_VCS_UNTRACKED_ICON above if you want to use a different icon.
474
+
# Remove the next line if you don't want to see untracked files at all.
475
+
(( VCS_STATUS_NUM_UNTRACKED )) && res+=" ${untracked}${(g::)POWERLEVEL9K_VCS_UNTRACKED_ICON}${VCS_STATUS_NUM_UNTRACKED}"
476
+
# "โ" if the number of unstaged files is unknown. This can happen due to
477
+
# POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY (see below) being set to a non-negative number lower
478
+
# than the number of files in the Git index, or due to bash.showDirtyState being set to false
479
+
# in the repository config. The number of staged and untracked files may also be unknown
480
+
# in this case.
481
+
(( VCS_STATUS_HAS_UNSTAGED == -1 )) && res+=" ${modified}โ"
482
+
483
+
typeset -g my_git_format=$res
484
+
}
485
+
functions -M my_git_formatter 2>/dev/null
486
+
487
+
# Don't count the number of unstaged, untracked and conflicted files in Git repositories with
488
+
# more than this many files in the index. Negative value means infinity.
489
+
#
490
+
# If you are working in Git repositories with tens of millions of files and seeing performance
491
+
# sagging, try setting POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY to a number lower than the output
492
+
# of `git ls-files | wc -l`. Alternatively, add `bash.showDirtyState = false` to the repository's
493
+
# config: `git config bash.showDirtyState false`.
494
+
typeset -g POWERLEVEL9K_VCS_MAX_INDEX_SIZE_DIRTY=-1
495
+
496
+
# Don't show Git status in prompt for repositories whose workdir matches this pattern.
497
+
# For example, if set to '~', the Git repository at $HOME/.git will be ignored.
498
+
# Multiple patterns can be combined with '|': '~(|/foo)|/bar/baz/*'.
499
+
typeset -g POWERLEVEL9K_VCS_DISABLED_WORKDIR_PATTERN='~'
500
+
501
+
# Disable the default Git status formatting.
502
+
typeset -g POWERLEVEL9K_VCS_DISABLE_GITSTATUS_FORMATTING=true
503
+
# Install our own Git status formatter.
504
+
typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION='${$((my_git_formatter(1)))+${my_git_format}}'
505
+
typeset -g POWERLEVEL9K_VCS_LOADING_CONTENT_EXPANSION='${$((my_git_formatter(0)))+${my_git_format}}'
506
+
# Enable counters for staged, unstaged, etc.
507
+
typeset -g POWERLEVEL9K_VCS_{STAGED,UNSTAGED,UNTRACKED,CONFLICTED,COMMITS_AHEAD,COMMITS_BEHIND}_MAX_NUM=-1
508
+
509
+
# Icon color.
510
+
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_COLOR=002
511
+
typeset -g POWERLEVEL9K_VCS_LOADING_VISUAL_IDENTIFIER_COLOR=000
512
+
# Custom icon.
513
+
typeset -g POWERLEVEL9K_VCS_VISUAL_IDENTIFIER_EXPANSION=
514
+
# Custom prefix.
515
+
# typeset -g POWERLEVEL9K_VCS_PREFIX='%fon '
516
+
517
+
# Show status of repositories of these types. You can add svn and/or hg if you are
518
+
# using them. If you do, your prompt may become slow even when your current directory
519
+
# isn't in an svn or hg repository.
520
+
typeset -g POWERLEVEL9K_VCS_BACKENDS=(git)
521
+
522
+
# These settings are used for repositories other than Git or when gitstatusd fails and
523
+
# Powerlevel10k has to fall back to using vcs_info.
524
+
typeset -g POWERLEVEL9K_VCS_CLEAN_FOREGROUND=002
525
+
typeset -g POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND=002
526
+
typeset -g POWERLEVEL9K_VCS_MODIFIED_FOREGROUND=004
527
+
528
+
##########################[ status: exit code of the last command ]###########################
529
+
# Enable OK_PIPE, ERROR_PIPE and ERROR_SIGNAL status states to allow us to enable, disable and
530
+
# style them independently from the regular OK and ERROR state.
531
+
typeset -g POWERLEVEL9K_STATUS_EXTENDED_STATES=true
532
+
533
+
# Status on success. No content, just an icon. No need to show it if prompt_char is enabled as
534
+
# it will signify success by turning green.
535
+
typeset -g POWERLEVEL9K_STATUS_OK=false
536
+
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=002
537
+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='โ'
538
+
539
+
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
540
+
# like this: 1|0.
541
+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
542
+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=002
543
+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='โ'
544
+
545
+
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
546
+
# it will signify error by turning red.
547
+
typeset -g POWERLEVEL9K_STATUS_ERROR=false
548
+
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=001
549
+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION='โ'
550
+
551
+
# Status when the last command was terminated by a signal.
552
+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
553
+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=001
554
+
# Use terse signal names: "INT" instead of "SIGINT(2)".
555
+
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
556
+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION='โ'
557
+
558
+
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
559
+
# It may look like this: 1|0.
560
+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
561
+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=001
562
+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION='โ'
563
+
564
+
###################[ command_execution_time: duration of the last command ]###################
565
+
# Show duration of the last command if takes at least this many seconds.
566
+
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_THRESHOLD=3
567
+
# Show this many fractional digits. Zero means round to seconds.
568
+
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PRECISION=0
569
+
# Execution time color.
570
+
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FOREGROUND=008
571
+
# Duration format: 1d 2h 3m 4s.
572
+
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_FORMAT='d h m s'
573
+
# Custom icon.
574
+
typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_VISUAL_IDENTIFIER_EXPANSION=
575
+
# Custom prefix.
576
+
# typeset -g POWERLEVEL9K_COMMAND_EXECUTION_TIME_PREFIX='%ftook '
577
+
578
+
#######################[ background_jobs: presence of background jobs ]#######################
579
+
# Don't show the number of background jobs.
580
+
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VERBOSE=false
581
+
# Background jobs color.
582
+
typeset -g POWERLEVEL9K_BACKGROUND_JOBS_FOREGROUND=002
583
+
# Custom icon.
584
+
# typeset -g POWERLEVEL9K_BACKGROUND_JOBS_VISUAL_IDENTIFIER_EXPANSION='โญ'
585
+
586
+
#######################[ direnv: direnv status (https://direnv.net/) ]########################
587
+
# Direnv color.
588
+
typeset -g POWERLEVEL9K_DIRENV_FOREGROUND=003
589
+
# Custom icon.
590
+
# typeset -g POWERLEVEL9K_DIRENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
591
+
592
+
###############[ asdf: asdf version manager (https://github.com/asdf-vm/asdf) ]###############
593
+
# Default asdf color. Only used to display tools for which there is no color override (see below).
594
+
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_FOREGROUND.
595
+
typeset -g POWERLEVEL9K_ASDF_FOREGROUND=006
596
+
597
+
# There are four parameters that can be used to hide asdf tools. Each parameter describes
598
+
# conditions under which a tool gets hidden. Parameters can hide tools but not unhide them. If at
599
+
# least one parameter decides to hide a tool, that tool gets hidden. If no parameter decides to
600
+
# hide a tool, it gets shown.
601
+
#
602
+
# Special note on the difference between POWERLEVEL9K_ASDF_SOURCES and
603
+
# POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW. Consider the effect of the following commands:
604
+
#
605
+
# asdf local python 3.8.1
606
+
# asdf global python 3.8.1
607
+
#
608
+
# After running both commands the current python version is 3.8.1 and its source is "local" as
609
+
# it takes precedence over "global". If POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW is set to false,
610
+
# it'll hide python version in this case because 3.8.1 is the same as the global version.
611
+
# POWERLEVEL9K_ASDF_SOURCES will hide python version only if the value of this parameter doesn't
612
+
# contain "local".
613
+
614
+
# Hide tool versions that don't come from one of these sources.
615
+
#
616
+
# Available sources:
617
+
#
618
+
# - shell `asdf current` says "set by ASDF_${TOOL}_VERSION environment variable"
619
+
# - local `asdf current` says "set by /some/not/home/directory/file"
620
+
# - global `asdf current` says "set by /home/username/file"
621
+
#
622
+
# Note: If this parameter is set to (shell local global), it won't hide tools.
623
+
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SOURCES.
624
+
typeset -g POWERLEVEL9K_ASDF_SOURCES=(shell local global)
625
+
626
+
# If set to false, hide tool versions that are the same as global.
627
+
#
628
+
# Note: The name of this parameter doesn't reflect its meaning at all.
629
+
# Note: If this parameter is set to true, it won't hide tools.
630
+
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_PROMPT_ALWAYS_SHOW.
631
+
typeset -g POWERLEVEL9K_ASDF_PROMPT_ALWAYS_SHOW=false
632
+
633
+
# If set to false, hide tool versions that are equal to "system".
634
+
#
635
+
# Note: If this parameter is set to true, it won't hide tools.
636
+
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SHOW_SYSTEM.
637
+
typeset -g POWERLEVEL9K_ASDF_SHOW_SYSTEM=true
638
+
639
+
# If set to non-empty value, hide tools unless there is a file matching the specified file pattern
640
+
# in the current directory, or its parent directory, or its grandparent directory, and so on.
641
+
#
642
+
# Note: If this parameter is set to empty value, it won't hide tools.
643
+
# Note: SHOW_ON_UPGLOB isn't specific to asdf. It works with all prompt segments.
644
+
# Tip: Override this parameter for ${TOOL} with POWERLEVEL9K_ASDF_${TOOL}_SHOW_ON_UPGLOB.
645
+
#
646
+
# Example: Hide nodejs version when there is no package.json and no *.js files in the current
647
+
# directory, in `..`, in `../..` and so on.
648
+
#
649
+
# typeset -g POWERLEVEL9K_ASDF_NODEJS_SHOW_ON_UPGLOB='*.js|package.json'
650
+
typeset -g POWERLEVEL9K_ASDF_SHOW_ON_UPGLOB=
651
+
652
+
# Ruby version from asdf.
653
+
typeset -g POWERLEVEL9K_ASDF_RUBY_FOREGROUND=168
654
+
# typeset -g POWERLEVEL9K_ASDF_RUBY_VISUAL_IDENTIFIER_EXPANSION='โญ'
655
+
# typeset -g POWERLEVEL9K_ASDF_RUBY_SHOW_ON_UPGLOB='*.foo|*.bar'
656
+
657
+
# Python version from asdf.
658
+
typeset -g POWERLEVEL9K_ASDF_PYTHON_FOREGROUND=37
659
+
# typeset -g POWERLEVEL9K_ASDF_PYTHON_VISUAL_IDENTIFIER_EXPANSION='โญ'
660
+
# typeset -g POWERLEVEL9K_ASDF_PYTHON_SHOW_ON_UPGLOB='*.foo|*.bar'
661
+
662
+
# Go version from asdf.
663
+
typeset -g POWERLEVEL9K_ASDF_GOLANG_FOREGROUND=37
664
+
# typeset -g POWERLEVEL9K_ASDF_GOLANG_VISUAL_IDENTIFIER_EXPANSION='โญ'
665
+
# typeset -g POWERLEVEL9K_ASDF_GOLANG_SHOW_ON_UPGLOB='*.foo|*.bar'
666
+
667
+
# Node.js version from asdf.
668
+
typeset -g POWERLEVEL9K_ASDF_NODEJS_FOREGROUND=70
669
+
# typeset -g POWERLEVEL9K_ASDF_NODEJS_VISUAL_IDENTIFIER_EXPANSION='โญ'
670
+
# typeset -g POWERLEVEL9K_ASDF_NODEJS_SHOW_ON_UPGLOB='*.foo|*.bar'
671
+
672
+
# Rust version from asdf.
673
+
typeset -g POWERLEVEL9K_ASDF_RUST_FOREGROUND=37
674
+
# typeset -g POWERLEVEL9K_ASDF_RUST_VISUAL_IDENTIFIER_EXPANSION='โญ'
675
+
# typeset -g POWERLEVEL9K_ASDF_RUST_SHOW_ON_UPGLOB='*.foo|*.bar'
676
+
677
+
# .NET Core version from asdf.
678
+
typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_FOREGROUND=134
679
+
# typeset -g POWERLEVEL9K_ASDF_DOTNET_CORE_VISUAL_IDENTIFIER_EXPANSION='โญ'
680
+
# typeset -g POWERLEVEL9K_ASDF_DOTNET_SHOW_ON_UPGLOB='*.foo|*.bar'
681
+
682
+
# Flutter version from asdf.
683
+
typeset -g POWERLEVEL9K_ASDF_FLUTTER_FOREGROUND=38
684
+
# typeset -g POWERLEVEL9K_ASDF_FLUTTER_VISUAL_IDENTIFIER_EXPANSION='โญ'
685
+
# typeset -g POWERLEVEL9K_ASDF_FLUTTER_SHOW_ON_UPGLOB='*.foo|*.bar'
686
+
687
+
# Lua version from asdf.
688
+
typeset -g POWERLEVEL9K_ASDF_LUA_FOREGROUND=32
689
+
# typeset -g POWERLEVEL9K_ASDF_LUA_VISUAL_IDENTIFIER_EXPANSION='โญ'
690
+
# typeset -g POWERLEVEL9K_ASDF_LUA_SHOW_ON_UPGLOB='*.foo|*.bar'
691
+
692
+
# Java version from asdf.
693
+
typeset -g POWERLEVEL9K_ASDF_JAVA_FOREGROUND=32
694
+
# typeset -g POWERLEVEL9K_ASDF_JAVA_VISUAL_IDENTIFIER_EXPANSION='โญ'
695
+
# typeset -g POWERLEVEL9K_ASDF_JAVA_SHOW_ON_UPGLOB='*.foo|*.bar'
696
+
697
+
# Perl version from asdf.
698
+
typeset -g POWERLEVEL9K_ASDF_PERL_FOREGROUND=67
699
+
# typeset -g POWERLEVEL9K_ASDF_PERL_VISUAL_IDENTIFIER_EXPANSION='โญ'
700
+
# typeset -g POWERLEVEL9K_ASDF_PERL_SHOW_ON_UPGLOB='*.foo|*.bar'
701
+
702
+
# Erlang version from asdf.
703
+
typeset -g POWERLEVEL9K_ASDF_ERLANG_FOREGROUND=125
704
+
# typeset -g POWERLEVEL9K_ASDF_ERLANG_VISUAL_IDENTIFIER_EXPANSION='โญ'
705
+
# typeset -g POWERLEVEL9K_ASDF_ERLANG_SHOW_ON_UPGLOB='*.foo|*.bar'
706
+
707
+
# Elixir version from asdf.
708
+
typeset -g POWERLEVEL9K_ASDF_ELIXIR_FOREGROUND=129
709
+
# typeset -g POWERLEVEL9K_ASDF_ELIXIR_VISUAL_IDENTIFIER_EXPANSION='โญ'
710
+
# typeset -g POWERLEVEL9K_ASDF_ELIXIR_SHOW_ON_UPGLOB='*.foo|*.bar'
711
+
712
+
# Postgres version from asdf.
713
+
typeset -g POWERLEVEL9K_ASDF_POSTGRES_FOREGROUND=31
714
+
# typeset -g POWERLEVEL9K_ASDF_POSTGRES_VISUAL_IDENTIFIER_EXPANSION='โญ'
715
+
# typeset -g POWERLEVEL9K_ASDF_POSTGRES_SHOW_ON_UPGLOB='*.foo|*.bar'
716
+
717
+
# PHP version from asdf.
718
+
typeset -g POWERLEVEL9K_ASDF_PHP_FOREGROUND=99
719
+
# typeset -g POWERLEVEL9K_ASDF_PHP_VISUAL_IDENTIFIER_EXPANSION='โญ'
720
+
# typeset -g POWERLEVEL9K_ASDF_PHP_SHOW_ON_UPGLOB='*.foo|*.bar'
721
+
722
+
# Haskell version from asdf.
723
+
typeset -g POWERLEVEL9K_ASDF_HASKELL_FOREGROUND=172
724
+
# typeset -g POWERLEVEL9K_ASDF_HASKELL_VISUAL_IDENTIFIER_EXPANSION='โญ'
725
+
# typeset -g POWERLEVEL9K_ASDF_HASKELL_SHOW_ON_UPGLOB='*.foo|*.bar'
726
+
727
+
# Julia version from asdf.
728
+
typeset -g POWERLEVEL9K_ASDF_JULIA_FOREGROUND=70
729
+
# typeset -g POWERLEVEL9K_ASDF_JULIA_VISUAL_IDENTIFIER_EXPANSION='โญ'
730
+
# typeset -g POWERLEVEL9K_ASDF_JULIA_SHOW_ON_UPGLOB='*.foo|*.bar'
731
+
732
+
##########[ nordvpn: nordvpn connection status, linux only (https://nordvpn.com/) ]###########
733
+
# NordVPN connection indicator color.
734
+
typeset -g POWERLEVEL9K_NORDVPN_FOREGROUND=39
735
+
# Hide NordVPN connection indicator when not connected.
736
+
typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_CONTENT_EXPANSION=
737
+
typeset -g POWERLEVEL9K_NORDVPN_{DISCONNECTED,CONNECTING,DISCONNECTING}_VISUAL_IDENTIFIER_EXPANSION=
738
+
# Custom icon.
739
+
# typeset -g POWERLEVEL9K_NORDVPN_VISUAL_IDENTIFIER_EXPANSION='โญ'
740
+
741
+
#################[ ranger: ranger shell (https://github.com/ranger/ranger) ]##################
742
+
# Ranger shell color.
743
+
typeset -g POWERLEVEL9K_RANGER_FOREGROUND=003
744
+
# Custom icon.
745
+
# typeset -g POWERLEVEL9K_RANGER_VISUAL_IDENTIFIER_EXPANSION='โญ'
746
+
747
+
####################[ yazi: yazi shell (https://github.com/sxyazi/yazi) ]#####################
748
+
# Yazi shell color.
749
+
typeset -g POWERLEVEL9K_YAZI_FOREGROUND=003
750
+
# Custom icon.
751
+
# typeset -g POWERLEVEL9K_YAZI_VISUAL_IDENTIFIER_EXPANSION='โญ'
752
+
753
+
######################[ nnn: nnn shell (https://github.com/jarun/nnn) ]#######################
754
+
# Nnn shell color.
755
+
typeset -g POWERLEVEL9K_NNN_FOREGROUND=004
756
+
# Custom icon.
757
+
# typeset -g POWERLEVEL9K_NNN_VISUAL_IDENTIFIER_EXPANSION='โญ'
758
+
759
+
######################[ lf: lf shell (https://github.com/gokcehan/lf) ]#######################
760
+
# lf shell color.
761
+
typeset -g POWERLEVEL9K_LF_FOREGROUND=002
762
+
# Custom icon.
763
+
# typeset -g POWERLEVEL9K_LF_VISUAL_IDENTIFIER_EXPANSION='โญ'
764
+
765
+
##################[ xplr: xplr shell (https://github.com/sayanarijit/xplr) ]##################
766
+
# xplr shell color.
767
+
typeset -g POWERLEVEL9K_XPLR_FOREGROUND=002
768
+
# Custom icon.
769
+
# typeset -g POWERLEVEL9K_XPLR_VISUAL_IDENTIFIER_EXPANSION='โญ'
770
+
771
+
###########################[ vim_shell: vim shell indicator (:sh) ]###########################
772
+
# Vim shell indicator color.
773
+
typeset -g POWERLEVEL9K_VIM_SHELL_FOREGROUND=002
774
+
# Custom icon.
775
+
# typeset -g POWERLEVEL9K_VIM_SHELL_VISUAL_IDENTIFIER_EXPANSION='โญ'
776
+
777
+
######[ midnight_commander: midnight commander shell (https://midnight-commander.org/) ]######
778
+
# Midnight Commander shell color.
779
+
typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_FOREGROUND=003
780
+
# Custom icon.
781
+
# typeset -g POWERLEVEL9K_MIDNIGHT_COMMANDER_VISUAL_IDENTIFIER_EXPANSION='โญ'
782
+
783
+
#[ nix_shell: nix shell (https://nixos.org/nixos/nix-pills/developing-with-nix-shell.html) ]##
784
+
# Nix shell color.
785
+
typeset -g POWERLEVEL9K_NIX_SHELL_FOREGROUND=74
786
+
787
+
# Display the icon of nix_shell if PATH contains a subdirectory of /nix/store.
788
+
# typeset -g POWERLEVEL9K_NIX_SHELL_INFER_FROM_PATH=false
789
+
790
+
# Tip: If you want to see just the icon without "pure" and "impure", uncomment the next line.
791
+
typeset -g POWERLEVEL9K_NIX_SHELL_CONTENT_EXPANSION=
792
+
793
+
# Custom icon.
794
+
# typeset -g POWERLEVEL9K_NIX_SHELL_VISUAL_IDENTIFIER_EXPANSION='โญ'
795
+
796
+
##################[ chezmoi_shell: chezmoi shell (https://www.chezmoi.io/) ]##################
797
+
# chezmoi shell color.
798
+
typeset -g POWERLEVEL9K_CHEZMOI_SHELL_FOREGROUND=012
799
+
# Custom icon.
800
+
# typeset -g POWERLEVEL9K_CHEZMOI_SHELL_VISUAL_IDENTIFIER_EXPANSION='โญ'
801
+
802
+
##################################[ disk_usage: disk usage ]##################################
803
+
# Colors for different levels of disk usage.
804
+
typeset -g POWERLEVEL9K_DISK_USAGE_NORMAL_FOREGROUND=002
805
+
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_FOREGROUND=003
806
+
typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_FOREGROUND=001
807
+
# Thresholds for different levels of disk usage (percentage points).
808
+
typeset -g POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL=90
809
+
typeset -g POWERLEVEL9K_DISK_USAGE_CRITICAL_LEVEL=95
810
+
# If set to true, hide disk usage when below $POWERLEVEL9K_DISK_USAGE_WARNING_LEVEL percent.
811
+
typeset -g POWERLEVEL9K_DISK_USAGE_ONLY_WARNING=false
812
+
# Custom icon.
813
+
# typeset -g POWERLEVEL9K_DISK_USAGE_VISUAL_IDENTIFIER_EXPANSION='โญ'
814
+
815
+
######################################[ ram: free RAM ]#######################################
816
+
# RAM color.
817
+
typeset -g POWERLEVEL9K_RAM_FOREGROUND=008
818
+
# Custom icon.
819
+
# typeset -g POWERLEVEL9K_RAM_VISUAL_IDENTIFIER_EXPANSION='โญ'
820
+
821
+
#####################################[ swap: used swap ]######################################
822
+
# Swap color.
823
+
typeset -g POWERLEVEL9K_SWAP_FOREGROUND=013
824
+
# Custom icon.
825
+
# typeset -g POWERLEVEL9K_SWAP_VISUAL_IDENTIFIER_EXPANSION='โญ'
826
+
827
+
######################################[ load: CPU load ]######################################
828
+
# Show average CPU load over this many last minutes. Valid values are 1, 5 and 15.
829
+
typeset -g POWERLEVEL9K_LOAD_WHICH=5
830
+
# Load color when load is under 50%.
831
+
typeset -g POWERLEVEL9K_LOAD_NORMAL_FOREGROUND=002
832
+
# Load color when load is between 50% and 70%.
833
+
typeset -g POWERLEVEL9K_LOAD_WARNING_FOREGROUND=003
834
+
# Load color when load is over 70%.
835
+
typeset -g POWERLEVEL9K_LOAD_CRITICAL_FOREGROUND=001
836
+
# Custom icon.
837
+
# typeset -g POWERLEVEL9K_LOAD_VISUAL_IDENTIFIER_EXPANSION='โญ'
838
+
839
+
################[ todo: todo items (https://github.com/todotxt/todo.txt-cli) ]################
840
+
# Todo color.
841
+
typeset -g POWERLEVEL9K_TODO_FOREGROUND=014
842
+
# Hide todo when the total number of tasks is zero.
843
+
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_TOTAL=true
844
+
# Hide todo when the number of tasks after filtering is zero.
845
+
typeset -g POWERLEVEL9K_TODO_HIDE_ZERO_FILTERED=false
846
+
847
+
# Todo format. The following parameters are available within the expansion.
848
+
#
849
+
# - P9K_TODO_TOTAL_TASK_COUNT The total number of tasks.
850
+
# - P9K_TODO_FILTERED_TASK_COUNT The number of tasks after filtering.
851
+
#
852
+
# These variables correspond to the last line of the output of `todo.sh -p ls`:
853
+
#
854
+
# TODO: 24 of 42 tasks shown
855
+
#
856
+
# Here 24 is P9K_TODO_FILTERED_TASK_COUNT and 42 is P9K_TODO_TOTAL_TASK_COUNT.
857
+
#
858
+
# typeset -g POWERLEVEL9K_TODO_CONTENT_EXPANSION='$P9K_TODO_FILTERED_TASK_COUNT'
859
+
860
+
# Custom icon.
861
+
# typeset -g POWERLEVEL9K_TODO_VISUAL_IDENTIFIER_EXPANSION='โญ'
862
+
863
+
###########[ timewarrior: timewarrior tracking status (https://timewarrior.net/) ]############
864
+
# Timewarrior color.
865
+
typeset -g POWERLEVEL9K_TIMEWARRIOR_FOREGROUND=006
866
+
# If the tracked task is longer than 24 characters, truncate and append "โฆ".
867
+
# Tip: To always display tasks without truncation, delete the following parameter.
868
+
# Tip: To hide task names and display just the icon when time tracking is enabled, set the
869
+
# value of the following parameter to "".
870
+
typeset -g POWERLEVEL9K_TIMEWARRIOR_CONTENT_EXPANSION='${P9K_CONTENT:0:24}${${P9K_CONTENT:24}:+โฆ}'
871
+
872
+
# Custom icon.
873
+
# typeset -g POWERLEVEL9K_TIMEWARRIOR_VISUAL_IDENTIFIER_EXPANSION='โญ'
874
+
875
+
##############[ taskwarrior: taskwarrior task count (https://taskwarrior.org/) ]##############
876
+
# Taskwarrior color.
877
+
typeset -g POWERLEVEL9K_TASKWARRIOR_FOREGROUND=006
878
+
879
+
# Taskwarrior segment format. The following parameters are available within the expansion.
880
+
#
881
+
# - P9K_TASKWARRIOR_PENDING_COUNT The number of pending tasks: `task +PENDING count`.
882
+
# - P9K_TASKWARRIOR_OVERDUE_COUNT The number of overdue tasks: `task +OVERDUE count`.
883
+
#
884
+
# Zero values are represented as empty parameters.
885
+
#
886
+
# The default format:
887
+
#
888
+
# '${P9K_TASKWARRIOR_OVERDUE_COUNT:+"!$P9K_TASKWARRIOR_OVERDUE_COUNT/"}$P9K_TASKWARRIOR_PENDING_COUNT'
889
+
#
890
+
# typeset -g POWERLEVEL9K_TASKWARRIOR_CONTENT_EXPANSION='$P9K_TASKWARRIOR_PENDING_COUNT'
891
+
892
+
# Custom icon.
893
+
# typeset -g POWERLEVEL9K_TASKWARRIOR_VISUAL_IDENTIFIER_EXPANSION='โญ'
894
+
895
+
######[ per_directory_history: Oh My Zsh per-directory-history local/global indicator ]#######
896
+
# Color when using local/global history.
897
+
typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_LOCAL_FOREGROUND=013
898
+
typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_GLOBAL_FOREGROUND=011
899
+
900
+
# Tip: Uncomment the next two lines to hide "local"/"global" text and leave just the icon.
901
+
# typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_LOCAL_CONTENT_EXPANSION=''
902
+
# typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_GLOBAL_CONTENT_EXPANSION=''
903
+
904
+
# Custom icon.
905
+
# typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_LOCAL_VISUAL_IDENTIFIER_EXPANSION='โญ'
906
+
# typeset -g POWERLEVEL9K_PER_DIRECTORY_HISTORY_GLOBAL_VISUAL_IDENTIFIER_EXPANSION='โญ'
907
+
908
+
################################[ cpu_arch: CPU architecture ]################################
909
+
# CPU architecture color.
910
+
typeset -g POWERLEVEL9K_CPU_ARCH_FOREGROUND=003
911
+
912
+
# Hide the segment when on a specific CPU architecture.
913
+
# typeset -g POWERLEVEL9K_CPU_ARCH_X86_64_CONTENT_EXPANSION=
914
+
# typeset -g POWERLEVEL9K_CPU_ARCH_X86_64_VISUAL_IDENTIFIER_EXPANSION=
915
+
916
+
# Custom icon.
917
+
# typeset -g POWERLEVEL9K_CPU_ARCH_VISUAL_IDENTIFIER_EXPANSION='โญ'
918
+
919
+
##################################[ context: user@hostname ]##################################
920
+
# Context color when running with privileges.
921
+
typeset -g POWERLEVEL9K_CONTEXT_ROOT_FOREGROUND=001
922
+
# Context color in SSH without privileges.
923
+
typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_FOREGROUND=002
924
+
# Default context color (no privileges, no SSH).
925
+
typeset -g POWERLEVEL9K_CONTEXT_FOREGROUND=005
926
+
927
+
# Context format when running with privileges: bold user@hostname.
928
+
typeset -g POWERLEVEL9K_CONTEXT_ROOT_TEMPLATE='%B%n@%m'
929
+
# Context format when in SSH without privileges: user@hostname.
930
+
typeset -g POWERLEVEL9K_CONTEXT_{REMOTE,REMOTE_SUDO}_TEMPLATE='%n@%m'
931
+
# Default context format (no privileges, no SSH): user@hostname.
932
+
typeset -g POWERLEVEL9K_CONTEXT_TEMPLATE='%n@%m'
933
+
934
+
# Don't show context unless running with privileges or in SSH.
935
+
# Tip: Remove the next line to always show context.
936
+
typeset -g POWERLEVEL9K_CONTEXT_{DEFAULT,SUDO}_{CONTENT,VISUAL_IDENTIFIER}_EXPANSION=
937
+
938
+
# Custom icon.
939
+
# typeset -g POWERLEVEL9K_CONTEXT_VISUAL_IDENTIFIER_EXPANSION='โญ'
940
+
# Custom prefix.
941
+
# typeset -g POWERLEVEL9K_CONTEXT_PREFIX='%fwith '
942
+
943
+
###[ virtualenv: python virtual environment (https://docs.python.org/3/library/venv.html) ]###
944
+
# Python virtual environment color.
945
+
typeset -g POWERLEVEL9K_VIRTUALENV_FOREGROUND=37
946
+
# Don't show Python version next to the virtual environment name.
947
+
typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_PYTHON_VERSION=false
948
+
# If set to "false", won't show virtualenv if pyenv is already shown.
949
+
# If set to "if-different", won't show virtualenv if it's the same as pyenv.
950
+
typeset -g POWERLEVEL9K_VIRTUALENV_SHOW_WITH_PYENV=false
951
+
# Separate environment name from Python version only with a space.
952
+
typeset -g POWERLEVEL9K_VIRTUALENV_{LEFT,RIGHT}_DELIMITER=
953
+
# Custom icon.
954
+
# typeset -g POWERLEVEL9K_VIRTUALENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
955
+
956
+
#####################[ anaconda: conda environment (https://conda.io/) ]######################
957
+
# Anaconda environment color.
958
+
typeset -g POWERLEVEL9K_ANACONDA_FOREGROUND=37
959
+
960
+
# Anaconda segment format. The following parameters are available within the expansion.
961
+
#
962
+
# - CONDA_PREFIX Absolute path to the active Anaconda/Miniconda environment.
963
+
# - CONDA_DEFAULT_ENV Name of the active Anaconda/Miniconda environment.
964
+
# - CONDA_PROMPT_MODIFIER Configurable prompt modifier (see below).
965
+
# - P9K_ANACONDA_PYTHON_VERSION Current python version (python --version).
966
+
#
967
+
# CONDA_PROMPT_MODIFIER can be configured with the following command:
968
+
#
969
+
# conda config --set env_prompt '({default_env}) '
970
+
#
971
+
# The last argument is a Python format string that can use the following variables:
972
+
#
973
+
# - prefix The same as CONDA_PREFIX.
974
+
# - default_env The same as CONDA_DEFAULT_ENV.
975
+
# - name The last segment of CONDA_PREFIX.
976
+
# - stacked_env Comma-separated list of names in the environment stack. The first element is
977
+
# always the same as default_env.
978
+
#
979
+
# Note: '({default_env}) ' is the default value of env_prompt.
980
+
#
981
+
# The default value of POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION expands to $CONDA_PROMPT_MODIFIER
982
+
# without the surrounding parentheses, or to the last path component of CONDA_PREFIX if the former
983
+
# is empty.
984
+
typeset -g POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION='${${${${CONDA_PROMPT_MODIFIER#\(}% }%\)}:-${CONDA_PREFIX:t}}'
985
+
986
+
# Custom icon.
987
+
# typeset -g POWERLEVEL9K_ANACONDA_VISUAL_IDENTIFIER_EXPANSION='โญ'
988
+
989
+
################[ pyenv: python environment (https://github.com/pyenv/pyenv) ]################
990
+
# Pyenv color.
991
+
typeset -g POWERLEVEL9K_PYENV_FOREGROUND=37
992
+
# Hide python version if it doesn't come from one of these sources.
993
+
typeset -g POWERLEVEL9K_PYENV_SOURCES=(shell local global)
994
+
# If set to false, hide python version if it's the same as global:
995
+
# $(pyenv version-name) == $(pyenv global).
996
+
typeset -g POWERLEVEL9K_PYENV_PROMPT_ALWAYS_SHOW=false
997
+
# If set to false, hide python version if it's equal to "system".
998
+
typeset -g POWERLEVEL9K_PYENV_SHOW_SYSTEM=true
999
+
1000
+
# Pyenv segment format. The following parameters are available within the expansion.
1001
+
#
1002
+
# - P9K_CONTENT Current pyenv environment (pyenv version-name).
1003
+
# - P9K_PYENV_PYTHON_VERSION Current python version (python --version).
1004
+
#
1005
+
# The default format has the following logic:
1006
+
#
1007
+
# 1. Display just "$P9K_CONTENT" if it's equal to "$P9K_PYENV_PYTHON_VERSION" or
1008
+
# starts with "$P9K_PYENV_PYTHON_VERSION/".
1009
+
# 2. Otherwise display "$P9K_CONTENT $P9K_PYENV_PYTHON_VERSION".
1010
+
typeset -g POWERLEVEL9K_PYENV_CONTENT_EXPANSION='${P9K_CONTENT}${${P9K_CONTENT:#$P9K_PYENV_PYTHON_VERSION(|/*)}:+ $P9K_PYENV_PYTHON_VERSION}'
1011
+
1012
+
# Custom icon.
1013
+
# typeset -g POWERLEVEL9K_PYENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1014
+
1015
+
################[ goenv: go environment (https://github.com/syndbg/goenv) ]################
1016
+
# Goenv color.
1017
+
typeset -g POWERLEVEL9K_GOENV_FOREGROUND=37
1018
+
# Hide go version if it doesn't come from one of these sources.
1019
+
typeset -g POWERLEVEL9K_GOENV_SOURCES=(shell local global)
1020
+
# If set to false, hide go version if it's the same as global:
1021
+
# $(goenv version-name) == $(goenv global).
1022
+
typeset -g POWERLEVEL9K_GOENV_PROMPT_ALWAYS_SHOW=false
1023
+
# If set to false, hide go version if it's equal to "system".
1024
+
typeset -g POWERLEVEL9K_GOENV_SHOW_SYSTEM=true
1025
+
# Custom icon.
1026
+
# typeset -g POWERLEVEL9K_GOENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1027
+
1028
+
##########[ nodenv: node.js version from nodenv (https://github.com/nodenv/nodenv) ]##########
1029
+
# Nodenv color.
1030
+
typeset -g POWERLEVEL9K_NODENV_FOREGROUND=70
1031
+
# Hide node version if it doesn't come from one of these sources.
1032
+
typeset -g POWERLEVEL9K_NODENV_SOURCES=(shell local global)
1033
+
# If set to false, hide node version if it's the same as global:
1034
+
# $(nodenv version-name) == $(nodenv global).
1035
+
typeset -g POWERLEVEL9K_NODENV_PROMPT_ALWAYS_SHOW=false
1036
+
# If set to false, hide node version if it's equal to "system".
1037
+
typeset -g POWERLEVEL9K_NODENV_SHOW_SYSTEM=true
1038
+
# Custom icon.
1039
+
# typeset -g POWERLEVEL9K_NODENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1040
+
1041
+
##############[ nvm: node.js version from nvm (https://github.com/nvm-sh/nvm) ]###############
1042
+
# Nvm color.
1043
+
typeset -g POWERLEVEL9K_NVM_FOREGROUND=70
1044
+
# If set to false, hide node version if it's the same as default:
1045
+
# $(nvm version current) == $(nvm version default).
1046
+
typeset -g POWERLEVEL9K_NVM_PROMPT_ALWAYS_SHOW=false
1047
+
# If set to false, hide node version if it's equal to "system".
1048
+
typeset -g POWERLEVEL9K_NVM_SHOW_SYSTEM=true
1049
+
# Custom icon.
1050
+
# typeset -g POWERLEVEL9K_NVM_VISUAL_IDENTIFIER_EXPANSION='โญ'
1051
+
1052
+
############[ nodeenv: node.js environment (https://github.com/ekalinin/nodeenv) ]############
1053
+
# Nodeenv color.
1054
+
typeset -g POWERLEVEL9K_NODEENV_FOREGROUND=70
1055
+
# Don't show Node version next to the environment name.
1056
+
typeset -g POWERLEVEL9K_NODEENV_SHOW_NODE_VERSION=false
1057
+
# Separate environment name from Node version only with a space.
1058
+
typeset -g POWERLEVEL9K_NODEENV_{LEFT,RIGHT}_DELIMITER=
1059
+
# Custom icon.
1060
+
# typeset -g POWERLEVEL9K_NODEENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1061
+
1062
+
##############################[ node_version: node.js version ]###############################
1063
+
# Node version color.
1064
+
typeset -g POWERLEVEL9K_NODE_VERSION_FOREGROUND=70
1065
+
# Show node version only when in a directory tree containing package.json.
1066
+
typeset -g POWERLEVEL9K_NODE_VERSION_PROJECT_ONLY=true
1067
+
# Custom icon.
1068
+
# typeset -g POWERLEVEL9K_NODE_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1069
+
1070
+
#######################[ go_version: go version (https://golang.org) ]########################
1071
+
# Go version color.
1072
+
typeset -g POWERLEVEL9K_GO_VERSION_FOREGROUND=37
1073
+
# Show go version only when in a go project subdirectory.
1074
+
typeset -g POWERLEVEL9K_GO_VERSION_PROJECT_ONLY=true
1075
+
# Custom icon.
1076
+
# typeset -g POWERLEVEL9K_GO_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1077
+
1078
+
#################[ rust_version: rustc version (https://www.rust-lang.org) ]##################
1079
+
# Rust version color.
1080
+
typeset -g POWERLEVEL9K_RUST_VERSION_FOREGROUND=166
1081
+
# Show rust version only when in a rust project subdirectory.
1082
+
typeset -g POWERLEVEL9K_RUST_VERSION_PROJECT_ONLY=true
1083
+
# Custom icon.
1084
+
# typeset -g POWERLEVEL9K_RUST_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1085
+
1086
+
###############[ dotnet_version: .NET version (https://dotnet.microsoft.com) ]################
1087
+
# .NET version color.
1088
+
typeset -g POWERLEVEL9K_DOTNET_VERSION_FOREGROUND=134
1089
+
# Show .NET version only when in a .NET project subdirectory.
1090
+
typeset -g POWERLEVEL9K_DOTNET_VERSION_PROJECT_ONLY=true
1091
+
# Custom icon.
1092
+
# typeset -g POWERLEVEL9K_DOTNET_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1093
+
1094
+
#####################[ php_version: php version (https://www.php.net/) ]######################
1095
+
# PHP version color.
1096
+
typeset -g POWERLEVEL9K_PHP_VERSION_FOREGROUND=99
1097
+
# Show PHP version only when in a PHP project subdirectory.
1098
+
typeset -g POWERLEVEL9K_PHP_VERSION_PROJECT_ONLY=true
1099
+
# Custom icon.
1100
+
# typeset -g POWERLEVEL9K_PHP_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1101
+
1102
+
##########[ laravel_version: laravel php framework version (https://laravel.com/) ]###########
1103
+
# Laravel version color.
1104
+
typeset -g POWERLEVEL9K_LARAVEL_VERSION_FOREGROUND=161
1105
+
# Custom icon.
1106
+
# typeset -g POWERLEVEL9K_LARAVEL_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1107
+
1108
+
####################[ java_version: java version (https://www.java.com/) ]####################
1109
+
# Java version color.
1110
+
typeset -g POWERLEVEL9K_JAVA_VERSION_FOREGROUND=32
1111
+
# Show java version only when in a java project subdirectory.
1112
+
typeset -g POWERLEVEL9K_JAVA_VERSION_PROJECT_ONLY=true
1113
+
# Show brief version.
1114
+
typeset -g POWERLEVEL9K_JAVA_VERSION_FULL=false
1115
+
# Custom icon.
1116
+
# typeset -g POWERLEVEL9K_JAVA_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1117
+
1118
+
###[ package: name@version from package.json (https://docs.npmjs.com/files/package.json) ]####
1119
+
# Package color.
1120
+
typeset -g POWERLEVEL9K_PACKAGE_FOREGROUND=012
1121
+
# Package format. The following parameters are available within the expansion.
1122
+
#
1123
+
# - P9K_PACKAGE_NAME The value of `name` field in package.json.
1124
+
# - P9K_PACKAGE_VERSION The value of `version` field in package.json.
1125
+
#
1126
+
# typeset -g POWERLEVEL9K_PACKAGE_CONTENT_EXPANSION='${P9K_PACKAGE_NAME//\%/%%}@${P9K_PACKAGE_VERSION//\%/%%}'
1127
+
# Custom icon.
1128
+
# typeset -g POWERLEVEL9K_PACKAGE_VISUAL_IDENTIFIER_EXPANSION='โญ'
1129
+
1130
+
#############[ rbenv: ruby version from rbenv (https://github.com/rbenv/rbenv) ]##############
1131
+
# Rbenv color.
1132
+
typeset -g POWERLEVEL9K_RBENV_FOREGROUND=168
1133
+
# Hide ruby version if it doesn't come from one of these sources.
1134
+
typeset -g POWERLEVEL9K_RBENV_SOURCES=(shell local global)
1135
+
# If set to false, hide ruby version if it's the same as global:
1136
+
# $(rbenv version-name) == $(rbenv global).
1137
+
typeset -g POWERLEVEL9K_RBENV_PROMPT_ALWAYS_SHOW=false
1138
+
# If set to false, hide ruby version if it's equal to "system".
1139
+
typeset -g POWERLEVEL9K_RBENV_SHOW_SYSTEM=true
1140
+
# Custom icon.
1141
+
# typeset -g POWERLEVEL9K_RBENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1142
+
1143
+
#######################[ rvm: ruby version from rvm (https://rvm.io) ]########################
1144
+
# Rvm color.
1145
+
typeset -g POWERLEVEL9K_RVM_FOREGROUND=168
1146
+
# Don't show @gemset at the end.
1147
+
typeset -g POWERLEVEL9K_RVM_SHOW_GEMSET=false
1148
+
# Don't show ruby- at the front.
1149
+
typeset -g POWERLEVEL9K_RVM_SHOW_PREFIX=false
1150
+
# Custom icon.
1151
+
# typeset -g POWERLEVEL9K_RVM_VISUAL_IDENTIFIER_EXPANSION='โญ'
1152
+
1153
+
###########[ fvm: flutter version management (https://github.com/leoafarias/fvm) ]############
1154
+
# Fvm color.
1155
+
typeset -g POWERLEVEL9K_FVM_FOREGROUND=38
1156
+
# Custom icon.
1157
+
# typeset -g POWERLEVEL9K_FVM_VISUAL_IDENTIFIER_EXPANSION='โญ'
1158
+
1159
+
##########[ luaenv: lua version from luaenv (https://github.com/cehoffman/luaenv) ]###########
1160
+
# Lua color.
1161
+
typeset -g POWERLEVEL9K_LUAENV_FOREGROUND=32
1162
+
# Hide lua version if it doesn't come from one of these sources.
1163
+
typeset -g POWERLEVEL9K_LUAENV_SOURCES=(shell local global)
1164
+
# If set to false, hide lua version if it's the same as global:
1165
+
# $(luaenv version-name) == $(luaenv global).
1166
+
typeset -g POWERLEVEL9K_LUAENV_PROMPT_ALWAYS_SHOW=false
1167
+
# If set to false, hide lua version if it's equal to "system".
1168
+
typeset -g POWERLEVEL9K_LUAENV_SHOW_SYSTEM=true
1169
+
# Custom icon.
1170
+
# typeset -g POWERLEVEL9K_LUAENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1171
+
1172
+
###############[ jenv: java version from jenv (https://github.com/jenv/jenv) ]################
1173
+
# Java color.
1174
+
typeset -g POWERLEVEL9K_JENV_FOREGROUND=32
1175
+
# Hide java version if it doesn't come from one of these sources.
1176
+
typeset -g POWERLEVEL9K_JENV_SOURCES=(shell local global)
1177
+
# If set to false, hide java version if it's the same as global:
1178
+
# $(jenv version-name) == $(jenv global).
1179
+
typeset -g POWERLEVEL9K_JENV_PROMPT_ALWAYS_SHOW=false
1180
+
# If set to false, hide java version if it's equal to "system".
1181
+
typeset -g POWERLEVEL9K_JENV_SHOW_SYSTEM=true
1182
+
# Custom icon.
1183
+
# typeset -g POWERLEVEL9K_JENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1184
+
1185
+
###########[ plenv: perl version from plenv (https://github.com/tokuhirom/plenv) ]############
1186
+
# Perl color.
1187
+
typeset -g POWERLEVEL9K_PLENV_FOREGROUND=67
1188
+
# Hide perl version if it doesn't come from one of these sources.
1189
+
typeset -g POWERLEVEL9K_PLENV_SOURCES=(shell local global)
1190
+
# If set to false, hide perl version if it's the same as global:
1191
+
# $(plenv version-name) == $(plenv global).
1192
+
typeset -g POWERLEVEL9K_PLENV_PROMPT_ALWAYS_SHOW=false
1193
+
# If set to false, hide perl version if it's equal to "system".
1194
+
typeset -g POWERLEVEL9K_PLENV_SHOW_SYSTEM=true
1195
+
# Custom icon.
1196
+
# typeset -g POWERLEVEL9K_PLENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1197
+
1198
+
###########[ perlbrew: perl version from perlbrew (https://github.com/gugod/App-perlbrew) ]############
1199
+
# Perlbrew color.
1200
+
typeset -g POWERLEVEL9K_PERLBREW_FOREGROUND=67
1201
+
# Show perlbrew version only when in a perl project subdirectory.
1202
+
typeset -g POWERLEVEL9K_PERLBREW_PROJECT_ONLY=true
1203
+
# Don't show "perl-" at the front.
1204
+
typeset -g POWERLEVEL9K_PERLBREW_SHOW_PREFIX=false
1205
+
# Custom icon.
1206
+
# typeset -g POWERLEVEL9K_PERLBREW_VISUAL_IDENTIFIER_EXPANSION='โญ'
1207
+
1208
+
############[ phpenv: php version from phpenv (https://github.com/phpenv/phpenv) ]############
1209
+
# PHP color.
1210
+
typeset -g POWERLEVEL9K_PHPENV_FOREGROUND=99
1211
+
# Hide php version if it doesn't come from one of these sources.
1212
+
typeset -g POWERLEVEL9K_PHPENV_SOURCES=(shell local global)
1213
+
# If set to false, hide php version if it's the same as global:
1214
+
# $(phpenv version-name) == $(phpenv global).
1215
+
typeset -g POWERLEVEL9K_PHPENV_PROMPT_ALWAYS_SHOW=false
1216
+
# If set to false, hide php version if it's equal to "system".
1217
+
typeset -g POWERLEVEL9K_PHPENV_SHOW_SYSTEM=true
1218
+
# Custom icon.
1219
+
# typeset -g POWERLEVEL9K_PHPENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1220
+
1221
+
#######[ scalaenv: scala version from scalaenv (https://github.com/scalaenv/scalaenv) ]#######
1222
+
# Scala color.
1223
+
typeset -g POWERLEVEL9K_SCALAENV_FOREGROUND=160
1224
+
# Hide scala version if it doesn't come from one of these sources.
1225
+
typeset -g POWERLEVEL9K_SCALAENV_SOURCES=(shell local global)
1226
+
# If set to false, hide scala version if it's the same as global:
1227
+
# $(scalaenv version-name) == $(scalaenv global).
1228
+
typeset -g POWERLEVEL9K_SCALAENV_PROMPT_ALWAYS_SHOW=false
1229
+
# If set to false, hide scala version if it's equal to "system".
1230
+
typeset -g POWERLEVEL9K_SCALAENV_SHOW_SYSTEM=true
1231
+
# Custom icon.
1232
+
# typeset -g POWERLEVEL9K_SCALAENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1233
+
1234
+
##########[ haskell_stack: haskell version from stack (https://haskellstack.org/) ]###########
1235
+
# Haskell color.
1236
+
typeset -g POWERLEVEL9K_HASKELL_STACK_FOREGROUND=172
1237
+
# Hide haskell version if it doesn't come from one of these sources.
1238
+
#
1239
+
# shell: version is set by STACK_YAML
1240
+
# local: version is set by stack.yaml up the directory tree
1241
+
# global: version is set by the implicit global project (~/.stack/global-project/stack.yaml)
1242
+
typeset -g POWERLEVEL9K_HASKELL_STACK_SOURCES=(shell local)
1243
+
# If set to false, hide haskell version if it's the same as in the implicit global project.
1244
+
typeset -g POWERLEVEL9K_HASKELL_STACK_ALWAYS_SHOW=true
1245
+
# Custom icon.
1246
+
# typeset -g POWERLEVEL9K_HASKELL_STACK_VISUAL_IDENTIFIER_EXPANSION='โญ'
1247
+
1248
+
#############[ kubecontext: current kubernetes context (https://kubernetes.io/) ]#############
1249
+
# Show kubecontext only when the command you are typing invokes one of these tools.
1250
+
# Tip: Remove the next line to always show kubecontext.
1251
+
typeset -g POWERLEVEL9K_KUBECONTEXT_SHOW_ON_COMMAND='kubectl|helm|kubens|kubectx|oc|istioctl|kogito|k9s|helmfile|flux|fluxctl|stern|kubeseal|skaffold|kubent|kubecolor|cmctl|sparkctl'
1252
+
1253
+
# Kubernetes context classes for the purpose of using different colors, icons and expansions with
1254
+
# different contexts.
1255
+
#
1256
+
# POWERLEVEL9K_KUBECONTEXT_CLASSES is an array with even number of elements. The first element
1257
+
# in each pair defines a pattern against which the current kubernetes context gets matched.
1258
+
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
1259
+
# that gets matched. If you unset all POWERLEVEL9K_KUBECONTEXT_*CONTENT_EXPANSION parameters,
1260
+
# you'll see this value in your prompt. The second element of each pair in
1261
+
# POWERLEVEL9K_KUBECONTEXT_CLASSES defines the context class. Patterns are tried in order. The
1262
+
# first match wins.
1263
+
#
1264
+
# For example, given these settings:
1265
+
#
1266
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_CLASSES=(
1267
+
# '*prod*' PROD
1268
+
# '*test*' TEST
1269
+
# '*' DEFAULT)
1270
+
#
1271
+
# If your current kubernetes context is "deathray-testing/default", its class is TEST
1272
+
# because "deathray-testing/default" doesn't match the pattern '*prod*' but does match '*test*'.
1273
+
#
1274
+
# You can define different colors, icons and content expansions for different classes:
1275
+
#
1276
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_FOREGROUND=28
1277
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_VISUAL_IDENTIFIER_EXPANSION='โญ'
1278
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
1279
+
typeset -g POWERLEVEL9K_KUBECONTEXT_CLASSES=(
1280
+
# '*prod*' PROD # These values are examples that are unlikely
1281
+
# '*test*' TEST # to match your needs. Customize them as needed.
1282
+
'*' DEFAULT)
1283
+
typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_FOREGROUND=134
1284
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='โญ'
1285
+
1286
+
# Use POWERLEVEL9K_KUBECONTEXT_CONTENT_EXPANSION to specify the content displayed by kubecontext
1287
+
# segment. Parameter expansions are very flexible and fast, too. See reference:
1288
+
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion.
1289
+
#
1290
+
# Within the expansion the following parameters are always available:
1291
+
#
1292
+
# - P9K_CONTENT The content that would've been displayed if there was no content
1293
+
# expansion defined.
1294
+
# - P9K_KUBECONTEXT_NAME The current context's name. Corresponds to column NAME in the
1295
+
# output of `kubectl config get-contexts`.
1296
+
# - P9K_KUBECONTEXT_CLUSTER The current context's cluster. Corresponds to column CLUSTER in the
1297
+
# output of `kubectl config get-contexts`.
1298
+
# - P9K_KUBECONTEXT_NAMESPACE The current context's namespace. Corresponds to column NAMESPACE
1299
+
# in the output of `kubectl config get-contexts`. If there is no
1300
+
# namespace, the parameter is set to "default".
1301
+
# - P9K_KUBECONTEXT_USER The current context's user. Corresponds to column AUTHINFO in the
1302
+
# output of `kubectl config get-contexts`.
1303
+
#
1304
+
# If the context points to Google Kubernetes Engine (GKE) or Elastic Kubernetes Service (EKS),
1305
+
# the following extra parameters are available:
1306
+
#
1307
+
# - P9K_KUBECONTEXT_CLOUD_NAME Either "gke" or "eks".
1308
+
# - P9K_KUBECONTEXT_CLOUD_ACCOUNT Account/project ID.
1309
+
# - P9K_KUBECONTEXT_CLOUD_ZONE Availability zone.
1310
+
# - P9K_KUBECONTEXT_CLOUD_CLUSTER Cluster.
1311
+
#
1312
+
# P9K_KUBECONTEXT_CLOUD_* parameters are derived from P9K_KUBECONTEXT_CLUSTER. For example,
1313
+
# if P9K_KUBECONTEXT_CLUSTER is "gke_my-account_us-east1-a_my-cluster-01":
1314
+
#
1315
+
# - P9K_KUBECONTEXT_CLOUD_NAME=gke
1316
+
# - P9K_KUBECONTEXT_CLOUD_ACCOUNT=my-account
1317
+
# - P9K_KUBECONTEXT_CLOUD_ZONE=us-east1-a
1318
+
# - P9K_KUBECONTEXT_CLOUD_CLUSTER=my-cluster-01
1319
+
#
1320
+
# If P9K_KUBECONTEXT_CLUSTER is "arn:aws:eks:us-east-1:123456789012:cluster/my-cluster-01":
1321
+
#
1322
+
# - P9K_KUBECONTEXT_CLOUD_NAME=eks
1323
+
# - P9K_KUBECONTEXT_CLOUD_ACCOUNT=123456789012
1324
+
# - P9K_KUBECONTEXT_CLOUD_ZONE=us-east-1
1325
+
# - P9K_KUBECONTEXT_CLOUD_CLUSTER=my-cluster-01
1326
+
typeset -g POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION=
1327
+
# Show P9K_KUBECONTEXT_CLOUD_CLUSTER if it's not empty and fall back to P9K_KUBECONTEXT_NAME.
1328
+
POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${P9K_KUBECONTEXT_CLOUD_CLUSTER:-${P9K_KUBECONTEXT_NAME}}'
1329
+
# Append the current context's namespace if it's not "default".
1330
+
POWERLEVEL9K_KUBECONTEXT_DEFAULT_CONTENT_EXPANSION+='${${:-/$P9K_KUBECONTEXT_NAMESPACE}:#/default}'
1331
+
1332
+
# Custom prefix.
1333
+
# typeset -g POWERLEVEL9K_KUBECONTEXT_PREFIX='%fat '
1334
+
1335
+
################[ terraform: terraform workspace (https://www.terraform.io) ]#################
1336
+
# Don't show terraform workspace if it's literally "default".
1337
+
typeset -g POWERLEVEL9K_TERRAFORM_SHOW_DEFAULT=false
1338
+
# POWERLEVEL9K_TERRAFORM_CLASSES is an array with even number of elements. The first element
1339
+
# in each pair defines a pattern against which the current terraform workspace gets matched.
1340
+
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
1341
+
# that gets matched. If you unset all POWERLEVEL9K_TERRAFORM_*CONTENT_EXPANSION parameters,
1342
+
# you'll see this value in your prompt. The second element of each pair in
1343
+
# POWERLEVEL9K_TERRAFORM_CLASSES defines the workspace class. Patterns are tried in order. The
1344
+
# first match wins.
1345
+
#
1346
+
# For example, given these settings:
1347
+
#
1348
+
# typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=(
1349
+
# '*prod*' PROD
1350
+
# '*test*' TEST
1351
+
# '*' OTHER)
1352
+
#
1353
+
# If your current terraform workspace is "project_test", its class is TEST because "project_test"
1354
+
# doesn't match the pattern '*prod*' but does match '*test*'.
1355
+
#
1356
+
# You can define different colors, icons and content expansions for different classes:
1357
+
#
1358
+
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_FOREGROUND=28
1359
+
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_VISUAL_IDENTIFIER_EXPANSION='โญ'
1360
+
# typeset -g POWERLEVEL9K_TERRAFORM_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
1361
+
typeset -g POWERLEVEL9K_TERRAFORM_CLASSES=(
1362
+
# '*prod*' PROD # These values are examples that are unlikely
1363
+
# '*test*' TEST # to match your needs. Customize them as needed.
1364
+
'*' OTHER)
1365
+
typeset -g POWERLEVEL9K_TERRAFORM_OTHER_FOREGROUND=38
1366
+
# typeset -g POWERLEVEL9K_TERRAFORM_OTHER_VISUAL_IDENTIFIER_EXPANSION='โญ'
1367
+
1368
+
#############[ terraform_version: terraform version (https://www.terraform.io) ]##############
1369
+
# Terraform version color.
1370
+
typeset -g POWERLEVEL9K_TERRAFORM_VERSION_FOREGROUND=38
1371
+
# Custom icon.
1372
+
# typeset -g POWERLEVEL9K_TERRAFORM_VERSION_VISUAL_IDENTIFIER_EXPANSION='โญ'
1373
+
1374
+
#[ aws: aws profile (https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-profiles.html) ]#
1375
+
# Show aws only when the command you are typing invokes one of these tools.
1376
+
# Tip: Remove the next line to always show aws.
1377
+
typeset -g POWERLEVEL9K_AWS_SHOW_ON_COMMAND='aws|awless|cdk|terraform|pulumi|terragrunt'
1378
+
1379
+
# POWERLEVEL9K_AWS_CLASSES is an array with even number of elements. The first element
1380
+
# in each pair defines a pattern against which the current AWS profile gets matched.
1381
+
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
1382
+
# that gets matched. If you unset all POWERLEVEL9K_AWS_*CONTENT_EXPANSION parameters,
1383
+
# you'll see this value in your prompt. The second element of each pair in
1384
+
# POWERLEVEL9K_AWS_CLASSES defines the profile class. Patterns are tried in order. The
1385
+
# first match wins.
1386
+
#
1387
+
# For example, given these settings:
1388
+
#
1389
+
# typeset -g POWERLEVEL9K_AWS_CLASSES=(
1390
+
# '*prod*' PROD
1391
+
# '*test*' TEST
1392
+
# '*' DEFAULT)
1393
+
#
1394
+
# If your current AWS profile is "company_test", its class is TEST
1395
+
# because "company_test" doesn't match the pattern '*prod*' but does match '*test*'.
1396
+
#
1397
+
# You can define different colors, icons and content expansions for different classes:
1398
+
#
1399
+
# typeset -g POWERLEVEL9K_AWS_TEST_FOREGROUND=28
1400
+
# typeset -g POWERLEVEL9K_AWS_TEST_VISUAL_IDENTIFIER_EXPANSION='โญ'
1401
+
# typeset -g POWERLEVEL9K_AWS_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
1402
+
typeset -g POWERLEVEL9K_AWS_CLASSES=(
1403
+
# '*prod*' PROD # These values are examples that are unlikely
1404
+
# '*test*' TEST # to match your needs. Customize them as needed.
1405
+
'*' DEFAULT)
1406
+
typeset -g POWERLEVEL9K_AWS_DEFAULT_FOREGROUND=208
1407
+
# typeset -g POWERLEVEL9K_AWS_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='โญ'
1408
+
1409
+
# AWS segment format. The following parameters are available within the expansion.
1410
+
#
1411
+
# - P9K_AWS_PROFILE The name of the current AWS profile.
1412
+
# - P9K_AWS_REGION The region associated with the current AWS profile.
1413
+
typeset -g POWERLEVEL9K_AWS_CONTENT_EXPANSION='${P9K_AWS_PROFILE//\%/%%}${P9K_AWS_REGION:+ ${P9K_AWS_REGION//\%/%%}}'
1414
+
1415
+
#[ aws_eb_env: aws elastic beanstalk environment (https://aws.amazon.com/elasticbeanstalk/) ]#
1416
+
# AWS Elastic Beanstalk environment color.
1417
+
typeset -g POWERLEVEL9K_AWS_EB_ENV_FOREGROUND=70
1418
+
# Custom icon.
1419
+
# typeset -g POWERLEVEL9K_AWS_EB_ENV_VISUAL_IDENTIFIER_EXPANSION='โญ'
1420
+
1421
+
##########[ azure: azure account name (https://docs.microsoft.com/en-us/cli/azure) ]##########
1422
+
# Show azure only when the command you are typing invokes one of these tools.
1423
+
# Tip: Remove the next line to always show azure.
1424
+
typeset -g POWERLEVEL9K_AZURE_SHOW_ON_COMMAND='az|terraform|pulumi|terragrunt'
1425
+
1426
+
# POWERLEVEL9K_AZURE_CLASSES is an array with even number of elements. The first element
1427
+
# in each pair defines a pattern against which the current azure account name gets matched.
1428
+
# More specifically, it's P9K_CONTENT prior to the application of context expansion (see below)
1429
+
# that gets matched. If you unset all POWERLEVEL9K_AZURE_*CONTENT_EXPANSION parameters,
1430
+
# you'll see this value in your prompt. The second element of each pair in
1431
+
# POWERLEVEL9K_AZURE_CLASSES defines the account class. Patterns are tried in order. The
1432
+
# first match wins.
1433
+
#
1434
+
# For example, given these settings:
1435
+
#
1436
+
# typeset -g POWERLEVEL9K_AZURE_CLASSES=(
1437
+
# '*prod*' PROD
1438
+
# '*test*' TEST
1439
+
# '*' OTHER)
1440
+
#
1441
+
# If your current azure account is "company_test", its class is TEST because "company_test"
1442
+
# doesn't match the pattern '*prod*' but does match '*test*'.
1443
+
#
1444
+
# You can define different colors, icons and content expansions for different classes:
1445
+
#
1446
+
# typeset -g POWERLEVEL9K_AZURE_TEST_FOREGROUND=28
1447
+
# typeset -g POWERLEVEL9K_AZURE_TEST_VISUAL_IDENTIFIER_EXPANSION='โญ'
1448
+
# typeset -g POWERLEVEL9K_AZURE_TEST_CONTENT_EXPANSION='> ${P9K_CONTENT} <'
1449
+
typeset -g POWERLEVEL9K_AZURE_CLASSES=(
1450
+
# '*prod*' PROD # These values are examples that are unlikely
1451
+
# '*test*' TEST # to match your needs. Customize them as needed.
1452
+
'*' OTHER)
1453
+
1454
+
# Azure account name color.
1455
+
typeset -g POWERLEVEL9K_AZURE_OTHER_FOREGROUND=32
1456
+
# Custom icon.
1457
+
# typeset -g POWERLEVEL9K_AZURE_OTHER_VISUAL_IDENTIFIER_EXPANSION='โญ'
1458
+
1459
+
##########[ gcloud: google cloud account and project (https://cloud.google.com/) ]###########
1460
+
# Show gcloud only when the command you are typing invokes one of these tools.
1461
+
# Tip: Remove the next line to always show gcloud.
1462
+
typeset -g POWERLEVEL9K_GCLOUD_SHOW_ON_COMMAND='gcloud|gcs|gsutil'
1463
+
# Google cloud color.
1464
+
typeset -g POWERLEVEL9K_GCLOUD_FOREGROUND=32
1465
+
1466
+
# Google cloud format. Change the value of POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION and/or
1467
+
# POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION if the default is too verbose or not informative
1468
+
# enough. You can use the following parameters in the expansions. Each of them corresponds to the
1469
+
# output of `gcloud` tool.
1470
+
#
1471
+
# Parameter | Source
1472
+
# -------------------------|--------------------------------------------------------------------
1473
+
# P9K_GCLOUD_CONFIGURATION | gcloud config configurations list --format='value(name)'
1474
+
# P9K_GCLOUD_ACCOUNT | gcloud config get-value account
1475
+
# P9K_GCLOUD_PROJECT_ID | gcloud config get-value project
1476
+
# P9K_GCLOUD_PROJECT_NAME | gcloud projects describe $P9K_GCLOUD_PROJECT_ID --format='value(name)'
1477
+
#
1478
+
# Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurrences of '%' replaced with '%%'.
1479
+
#
1480
+
# Obtaining project name requires sending a request to Google servers. This can take a long time
1481
+
# and even fail. When project name is unknown, P9K_GCLOUD_PROJECT_NAME is not set and gcloud
1482
+
# prompt segment is in state PARTIAL. When project name gets known, P9K_GCLOUD_PROJECT_NAME gets
1483
+
# set and gcloud prompt segment transitions to state COMPLETE.
1484
+
#
1485
+
# You can customize the format, icon and colors of gcloud segment separately for states PARTIAL
1486
+
# and COMPLETE. You can also hide gcloud in state PARTIAL by setting
1487
+
# POWERLEVEL9K_GCLOUD_PARTIAL_VISUAL_IDENTIFIER_EXPANSION and
1488
+
# POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION to empty.
1489
+
typeset -g POWERLEVEL9K_GCLOUD_PARTIAL_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_ID//\%/%%}'
1490
+
typeset -g POWERLEVEL9K_GCLOUD_COMPLETE_CONTENT_EXPANSION='${P9K_GCLOUD_PROJECT_NAME//\%/%%}'
1491
+
1492
+
# Send a request to Google (by means of `gcloud projects describe ...`) to obtain project name
1493
+
# this often. Negative value disables periodic polling. In this mode project name is retrieved
1494
+
# only when the current configuration, account or project id changes.
1495
+
typeset -g POWERLEVEL9K_GCLOUD_REFRESH_PROJECT_NAME_SECONDS=60
1496
+
1497
+
# Custom icon.
1498
+
# typeset -g POWERLEVEL9K_GCLOUD_VISUAL_IDENTIFIER_EXPANSION='โญ'
1499
+
1500
+
#[ google_app_cred: google application credentials (https://cloud.google.com/docs/authentication/production) ]#
1501
+
# Show google_app_cred only when the command you are typing invokes one of these tools.
1502
+
# Tip: Remove the next line to always show google_app_cred.
1503
+
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_SHOW_ON_COMMAND='terraform|pulumi|terragrunt'
1504
+
1505
+
# Google application credentials classes for the purpose of using different colors, icons and
1506
+
# expansions with different credentials.
1507
+
#
1508
+
# POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES is an array with even number of elements. The first
1509
+
# element in each pair defines a pattern against which the current kubernetes context gets
1510
+
# matched. More specifically, it's P9K_CONTENT prior to the application of context expansion
1511
+
# (see below) that gets matched. If you unset all POWERLEVEL9K_GOOGLE_APP_CRED_*CONTENT_EXPANSION
1512
+
# parameters, you'll see this value in your prompt. The second element of each pair in
1513
+
# POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES defines the context class. Patterns are tried in order.
1514
+
# The first match wins.
1515
+
#
1516
+
# For example, given these settings:
1517
+
#
1518
+
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=(
1519
+
# '*:*prod*:*' PROD
1520
+
# '*:*test*:*' TEST
1521
+
# '*' DEFAULT)
1522
+
#
1523
+
# If your current Google application credentials is "service_account deathray-testing x@y.com",
1524
+
# its class is TEST because it doesn't match the pattern '* *prod* *' but does match '* *test* *'.
1525
+
#
1526
+
# You can define different colors, icons and content expansions for different classes:
1527
+
#
1528
+
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_FOREGROUND=28
1529
+
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_VISUAL_IDENTIFIER_EXPANSION='โญ'
1530
+
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_TEST_CONTENT_EXPANSION='$P9K_GOOGLE_APP_CRED_PROJECT_ID'
1531
+
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_CLASSES=(
1532
+
# '*:*prod*:*' PROD # These values are examples that are unlikely
1533
+
# '*:*test*:*' TEST # to match your needs. Customize them as needed.
1534
+
'*' DEFAULT)
1535
+
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_FOREGROUND=012
1536
+
# typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_VISUAL_IDENTIFIER_EXPANSION='โญ'
1537
+
1538
+
# Use POWERLEVEL9K_GOOGLE_APP_CRED_CONTENT_EXPANSION to specify the content displayed by
1539
+
# google_app_cred segment. Parameter expansions are very flexible and fast, too. See reference:
1540
+
# http://zsh.sourceforge.net/Doc/Release/Expansion.html#Parameter-Expansion.
1541
+
#
1542
+
# You can use the following parameters in the expansion. Each of them corresponds to one of the
1543
+
# fields in the JSON file pointed to by GOOGLE_APPLICATION_CREDENTIALS.
1544
+
#
1545
+
# Parameter | JSON key file field
1546
+
# ---------------------------------+---------------
1547
+
# P9K_GOOGLE_APP_CRED_TYPE | type
1548
+
# P9K_GOOGLE_APP_CRED_PROJECT_ID | project_id
1549
+
# P9K_GOOGLE_APP_CRED_CLIENT_EMAIL | client_email
1550
+
#
1551
+
# Note: ${VARIABLE//\%/%%} expands to ${VARIABLE} with all occurrences of '%' replaced by '%%'.
1552
+
typeset -g POWERLEVEL9K_GOOGLE_APP_CRED_DEFAULT_CONTENT_EXPANSION='${P9K_GOOGLE_APP_CRED_PROJECT_ID//\%/%%}'
1553
+
1554
+
##############[ toolbox: toolbox name (https://github.com/containers/toolbox) ]###############
1555
+
# Toolbox color.
1556
+
typeset -g POWERLEVEL9K_TOOLBOX_FOREGROUND=178
1557
+
# Don't display the name of the toolbox if it matches fedora-toolbox-*.
1558
+
typeset -g POWERLEVEL9K_TOOLBOX_CONTENT_EXPANSION='${P9K_TOOLBOX_NAME:#fedora-toolbox-*}'
1559
+
# Custom icon.
1560
+
# typeset -g POWERLEVEL9K_TOOLBOX_VISUAL_IDENTIFIER_EXPANSION='โญ'
1561
+
# Custom prefix.
1562
+
# typeset -g POWERLEVEL9K_TOOLBOX_PREFIX='%fin '
1563
+
1564
+
###############################[ public_ip: public IP address ]###############################
1565
+
# Public IP color.
1566
+
typeset -g POWERLEVEL9K_PUBLIC_IP_FOREGROUND=003
1567
+
# Custom icon.
1568
+
# typeset -g POWERLEVEL9K_PUBLIC_IP_VISUAL_IDENTIFIER_EXPANSION='โญ'
1569
+
1570
+
########################[ vpn_ip: virtual private network indicator ]#########################
1571
+
# VPN IP color.
1572
+
typeset -g POWERLEVEL9K_VPN_IP_FOREGROUND=004
1573
+
# When on VPN, show just an icon without the IP address.
1574
+
# Tip: To display the private IP address when on VPN, remove the next line.
1575
+
typeset -g POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION=
1576
+
# Regular expression for the VPN network interface. Run `ifconfig` or `ip -4 a show` while on VPN
1577
+
# to see the name of the interface.
1578
+
typeset -g POWERLEVEL9K_VPN_IP_INTERFACE='(gpd|wg|(.*tun)|tailscale)[0-9]*|(zt.*)'
1579
+
# If set to true, show one segment per matching network interface. If set to false, show only
1580
+
# one segment corresponding to the first matching network interface.
1581
+
# Tip: If you set it to true, you'll probably want to unset POWERLEVEL9K_VPN_IP_CONTENT_EXPANSION.
1582
+
typeset -g POWERLEVEL9K_VPN_IP_SHOW_ALL=false
1583
+
# Custom icon.
1584
+
# typeset -g POWERLEVEL9K_VPN_IP_VISUAL_IDENTIFIER_EXPANSION='โญ'
1585
+
1586
+
###########[ ip: ip address and bandwidth usage for a specified network interface ]###########
1587
+
# IP color.
1588
+
typeset -g POWERLEVEL9K_IP_FOREGROUND=006
1589
+
# The following parameters are accessible within the expansion:
1590
+
#
1591
+
# Parameter | Meaning
1592
+
# ----------------------+-------------------------------------------
1593
+
# P9K_IP_IP | IP address
1594
+
# P9K_IP_INTERFACE | network interface
1595
+
# P9K_IP_RX_BYTES | total number of bytes received
1596
+
# P9K_IP_TX_BYTES | total number of bytes sent
1597
+
# P9K_IP_RX_BYTES_DELTA | number of bytes received since last prompt
1598
+
# P9K_IP_TX_BYTES_DELTA | number of bytes sent since last prompt
1599
+
# P9K_IP_RX_RATE | receive rate (since last prompt)
1600
+
# P9K_IP_TX_RATE | send rate (since last prompt)
1601
+
typeset -g POWERLEVEL9K_IP_CONTENT_EXPANSION='$P9K_IP_IP${P9K_IP_RX_RATE:+ %70Fโฃ$P9K_IP_RX_RATE}${P9K_IP_TX_RATE:+ %215Fโก$P9K_IP_TX_RATE}'
1602
+
# Show information for the first network interface whose name matches this regular expression.
1603
+
# Run `ifconfig` or `ip -4 a show` to see the names of all network interfaces.
1604
+
typeset -g POWERLEVEL9K_IP_INTERFACE='[ew].*'
1605
+
# Custom icon.
1606
+
# typeset -g POWERLEVEL9K_IP_VISUAL_IDENTIFIER_EXPANSION='โญ'
1607
+
1608
+
#########################[ proxy: system-wide http/https/ftp proxy ]##########################
1609
+
# Proxy color.
1610
+
typeset -g POWERLEVEL9K_PROXY_FOREGROUND=004
1611
+
# Custom icon.
1612
+
# typeset -g POWERLEVEL9K_PROXY_VISUAL_IDENTIFIER_EXPANSION='โญ'
1613
+
1614
+
################################[ battery: internal battery ]#################################
1615
+
# Show battery in red when it's below this level and not connected to power supply.
1616
+
typeset -g POWERLEVEL9K_BATTERY_LOW_THRESHOLD=20
1617
+
typeset -g POWERLEVEL9K_BATTERY_LOW_FOREGROUND=001
1618
+
# Show battery in green when it's charging or fully charged.
1619
+
typeset -g POWERLEVEL9K_BATTERY_{CHARGING,CHARGED}_FOREGROUND=002
1620
+
# Show battery in yellow when it's discharging.
1621
+
typeset -g POWERLEVEL9K_BATTERY_DISCONNECTED_FOREGROUND=003
1622
+
# Battery pictograms going from low to high level of charge.
1623
+
typeset -g POWERLEVEL9K_BATTERY_STAGES='\UF008E\UF007A\UF007B\UF007C\UF007D\UF007E\UF007F\UF0080\UF0081\UF0082\UF0079'
1624
+
# Don't show the remaining time to charge/discharge.
1625
+
typeset -g POWERLEVEL9K_BATTERY_VERBOSE=false
1626
+
1627
+
#####################################[ wifi: wifi speed ]#####################################
1628
+
# WiFi color.
1629
+
typeset -g POWERLEVEL9K_WIFI_FOREGROUND=006
1630
+
# Custom icon.
1631
+
# typeset -g POWERLEVEL9K_WIFI_VISUAL_IDENTIFIER_EXPANSION='โญ'
1632
+
1633
+
# Use different colors and icons depending on signal strength ($P9K_WIFI_BARS).
1634
+
#
1635
+
# # Wifi colors and icons for different signal strength levels (low to high).
1636
+
# typeset -g my_wifi_fg=(68 68 68 68 68) # <-- change these values
1637
+
# typeset -g my_wifi_icon=('WiFi' 'WiFi' 'WiFi' 'WiFi' 'WiFi') # <-- change these values
1638
+
#
1639
+
# typeset -g POWERLEVEL9K_WIFI_CONTENT_EXPANSION='%F{${my_wifi_fg[P9K_WIFI_BARS+1]}}$P9K_WIFI_LAST_TX_RATE Mbps'
1640
+
# typeset -g POWERLEVEL9K_WIFI_VISUAL_IDENTIFIER_EXPANSION='%F{${my_wifi_fg[P9K_WIFI_BARS+1]}}${my_wifi_icon[P9K_WIFI_BARS+1]}'
1641
+
#
1642
+
# The following parameters are accessible within the expansions:
1643
+
#
1644
+
# Parameter | Meaning
1645
+
# ----------------------+---------------
1646
+
# P9K_WIFI_SSID | service set identifier, a.k.a. network name
1647
+
# P9K_WIFI_LINK_AUTH | authentication protocol such as "wpa2-psk" or "none"; empty if unknown
1648
+
# P9K_WIFI_LAST_TX_RATE | wireless transmit rate in megabits per second
1649
+
# P9K_WIFI_RSSI | signal strength in dBm, from -120 to 0
1650
+
# P9K_WIFI_NOISE | noise in dBm, from -120 to 0
1651
+
# P9K_WIFI_BARS | signal strength in bars, from 0 to 4 (derived from P9K_WIFI_RSSI and P9K_WIFI_NOISE)
1652
+
1653
+
####################################[ time: current time ]####################################
1654
+
# Current time color.
1655
+
typeset -g POWERLEVEL9K_TIME_FOREGROUND=000
1656
+
# Format for the current time: 09:51:02. See `man 3 strftime`.
1657
+
typeset -g POWERLEVEL9K_TIME_FORMAT='%D{%H:%M:%S}'
1658
+
# If set to true, time will update when you hit enter. This way prompts for the past
1659
+
# commands will contain the start times of their commands as opposed to the default
1660
+
# behavior where they contain the end times of their preceding commands.
1661
+
typeset -g POWERLEVEL9K_TIME_UPDATE_ON_COMMAND=false
1662
+
# Custom icon.
1663
+
typeset -g POWERLEVEL9K_TIME_VISUAL_IDENTIFIER_EXPANSION=
1664
+
# Custom prefix.
1665
+
# typeset -g POWERLEVEL9K_TIME_PREFIX='%fat '
1666
+
1667
+
# Example of a user-defined prompt segment. Function prompt_example will be called on every
1668
+
# prompt if `example` prompt segment is added to POWERLEVEL9K_LEFT_PROMPT_ELEMENTS or
1669
+
# POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS. It displays an icon and orange text greeting the user.
1670
+
#
1671
+
# Type `p10k help segment` for documentation and a more sophisticated example.
1672
+
function prompt_example() {
1673
+
p10k segment -f 208 -i 'โญ' -t 'hello, %n'
1674
+
}
1675
+
1676
+
# User-defined prompt segments may optionally provide an instant_prompt_* function. Its job
1677
+
# is to generate the prompt segment for display in instant prompt. See
1678
+
# https://github.com/romkatv/powerlevel10k#instant-prompt.
1679
+
#
1680
+
# Powerlevel10k will call instant_prompt_* at the same time as the regular prompt_* function
1681
+
# and will record all `p10k segment` calls it makes. When displaying instant prompt, Powerlevel10k
1682
+
# will replay these calls without actually calling instant_prompt_*. It is imperative that
1683
+
# instant_prompt_* always makes the same `p10k segment` calls regardless of environment. If this
1684
+
# rule is not observed, the content of instant prompt will be incorrect.
1685
+
#
1686
+
# Usually, you should either not define instant_prompt_* or simply call prompt_* from it. If
1687
+
# instant_prompt_* is not defined for a segment, the segment won't be shown in instant prompt.
1688
+
function instant_prompt_example() {
1689
+
# Since prompt_example always makes the same `p10k segment` calls, we can call it from
1690
+
# instant_prompt_example. This will give us the same `example` prompt segment in the instant
1691
+
# and regular prompts.
1692
+
prompt_example
1693
+
}
1694
+
1695
+
# User-defined prompt segments can be customized the same way as built-in segments.
1696
+
# typeset -g POWERLEVEL9K_EXAMPLE_FOREGROUND=208
1697
+
# typeset -g POWERLEVEL9K_EXAMPLE_VISUAL_IDENTIFIER_EXPANSION='โญ'
1698
+
1699
+
# jj prompt instructions:
1700
+
# -----------------------
1701
+
# 1. add a p10k segment named `jj` to your prompt.
1702
+
# 2. turn off git status in jj repos at the top of my_git_formatter:
1703
+
# emulate -L zsh -o extended_glob
1704
+
# if [[ -n ./(../)#(.jj)(#qN/) ]]; then
1705
+
# typeset -g my_git_format=""
1706
+
# return
1707
+
# fi
1708
+
# 3. comment out any sections that you don't want in your own prompt,
1709
+
# using the table of contents below as a guide.
1710
+
1711
+
# jj prompt table of contents:
1712
+
# ----------------------------
1713
+
# jj_add | add changes to jj for this prompt | (no output)
1714
+
# jj_at | bookmark name and distance from @ | mainโบ1
1715
+
# jj_remote | count changes ahead/behind remote | 2โก1โฃ
1716
+
# jj_change | the current jj change ID | kkor
1717
+
# jj_desc | current change description | first line of description (or ๏ )
1718
+
# jj_status | counts of added, removed, modified | +1 -4 ^2
1719
+
# jj_op | the current jj operation ID | b44825e56a5a
1720
+
1721
+
function jj_status() {
1722
+
emulate -L zsh
1723
+
cd "$1"
1724
+
1725
+
local black='%000F'
1726
+
local grey='%008F'
1727
+
local green='%002F'
1728
+
local blue='%004F'
1729
+
local red='%001F'
1730
+
local yellow='%003F'
1731
+
local cyan='%006F'
1732
+
local magenta='%005F'
1733
+
1734
+
## jj_add
1735
+
# jj --at-operation=@ debug snapshot # not needed since as we use watchman...
1736
+
1737
+
1738
+
## jj_at
1739
+
local branch=$(jj --ignore-working-copy --at-op=@ --no-pager log --no-graph --limit 1 -r "
1740
+
coalesce(
1741
+
heads(::@ & (bookmarks() | remote_bookmarks() | tags())),
1742
+
heads(@:: & (bookmarks() | remote_bookmarks() | tags())),
1743
+
trunk()
1744
+
)" -T "separate(' ', bookmarks, tags)" 2> /dev/null | cut -d ' ' -f 1)
1745
+
if [[ -n $branch ]]; then
1746
+
[[ $branch =~ "\*$" ]] && branch=${branch::-1}
1747
+
1748
+
local VCS_STATUS_COMMITS_AFTER=$(jj --ignore-working-copy --at-op=@ --no-pager log --no-graph -r "$branch..@ & (~empty() | merges())" -T '"n"' 2> /dev/null | wc -c | tr -d ' ')
1749
+
local VCS_STATUS_COMMITS_BEFORE=$(jj --ignore-working-copy --at-op=@ --no-pager log --no-graph -r "@..$branch & (~empty() | merges())" -T '"n"' 2> /dev/null | wc -c | tr -d ' ')
1750
+
local counts=($(jj --ignore-working-copy --at-op=@ --no-pager bookmark list -r $branch -T '
1751
+
if(remote,
1752
+
separate(" ",
1753
+
name ++ "@" ++ remote,
1754
+
coalesce(tracking_ahead_count.exact(), tracking_ahead_count.lower()),
1755
+
coalesce(tracking_behind_count.exact(), tracking_behind_count.lower()),
1756
+
if(tracking_ahead_count.exact(), "0", "+"),
1757
+
if(tracking_behind_count.exact(), "0", "+"),
1758
+
) ++ "\n"
1759
+
)
1760
+
'))
1761
+
1762
+
local VCS_STATUS_LOCAL_BRANCH=$branch
1763
+
# note: the tracking_ahead_count and tracking_behind_count refer to whether the remote bookmark is ahead or behind the local bookmark, we want the other way round...
1764
+
local VCS_STATUS_COMMITS_BEHIND=$counts[2]
1765
+
local VCS_STATUS_COMMITS_AHEAD=$counts[3]
1766
+
local VCS_STATUS_COMMITS_BEHIND_PLUS=$counts[4]
1767
+
local VCS_STATUS_COMMITS_AHEAD_PLUS=$counts[5]
1768
+
fi
1769
+
1770
+
local status_char=''
1771
+
(( VCS_STATUS_COMMITS_AHEAD || VCS_STATUS_COMMITS_BEHIND )) && status_char='*'
1772
+
1773
+
local res
1774
+
local where=${(V)VCS_STATUS_LOCAL_BRANCH}
1775
+
# If local branch name or tag is at most 32 characters long, show it in full.
1776
+
# Otherwise show the first 12 โฆ the last 12.
1777
+
(( $#where > 32 )) && where[13,-13]="โฆ"
1778
+
res+="${magenta}${where//\%/%%}${status_char}" # escape %
1779
+
1780
+
# โน42 if before the local bookmark
1781
+
(( VCS_STATUS_COMMITS_BEFORE )) && res+="${red}โน${VCS_STATUS_COMMITS_BEFORE}"
1782
+
# โบ42 if beyond the local bookmark
1783
+
(( VCS_STATUS_COMMITS_AFTER )) && res+="${green}โบ${VCS_STATUS_COMMITS_AFTER}"
1784
+
1785
+
1786
+
## jj_remote
1787
+
# โก42 if our local branch is ahead of the remote.
1788
+
(( VCS_STATUS_COMMITS_AHEAD )) && res+=" ${green}โก${VCS_STATUS_COMMITS_AHEAD}"
1789
+
(( VCS_STATUS_COMMITS_AHEAD_PLUS )) && res+="${VCS_STATUS_COMMITS_AHEAD_PLUS}"
1790
+
# โฃ42 if our local branch is behind the remote; no leading space if our local branch is also ahead of the remote: โก42โฃ42.
1791
+
(( VCS_STATUS_COMMITS_BEHIND && !VCS_STATUS_COMMITS_AHEAD )) && res+=" "
1792
+
(( VCS_STATUS_COMMITS_BEHIND )) && res+="${red}โฃ${VCS_STATUS_COMMITS_BEHIND}"
1793
+
(( VCS_STATUS_COMMITS_BEHIND_PLUS )) && res+="${VCS_STATUS_COMMITS_BEHIND_PLUS}"
1794
+
1795
+
1796
+
## jj_change
1797
+
IFS="#" local change=($(jj --ignore-working-copy --at-op=@ --no-pager log --no-graph --limit 1 -r "@" -T '
1798
+
separate("#", change_id.shortest(4).prefix(), coalesce(change_id.shortest(4).rest(), "\0"),
1799
+
commit_id.shortest(4).prefix(),
1800
+
coalesce(commit_id.shortest(4).rest(), "\0"),
1801
+
concat(
1802
+
if(conflict, "ร"),
1803
+
if(divergent, "ฮจ"),
1804
+
if(hidden, "๐ชฆ"),
1805
+
if(immutable, "๐"),
1806
+
),
1807
+
)'))
1808
+
local VCS_STATUS_CHANGE=($change[1] $change[2])
1809
+
local VCS_STATUS_COMMIT=($change[3] $change[4])
1810
+
local VCS_STATUS_ACTION=$change[5]
1811
+
# 'zyxw' with the standard jj color coding for shortest name
1812
+
local status_color="$magenta"
1813
+
local desc_color="$black"
1814
+
local desc_color_fail="$yellow"
1815
+
[[ "$VCS_STATUS_ACTION" =~ "ร|ฮจ" ]] && status_color="$red" && desc_color="$red" && desc_color_fail="$red"
1816
+
res+=" ${status_color}${VCS_STATUS_CHANGE[1]}${grey}${VCS_STATUS_CHANGE[2]}"
1817
+
# symbols if the repo is in an unusual state.
1818
+
[[ -n $VCS_STATUS_ACTION ]] && res+=" ${red}${VCS_STATUS_ACTION}"
1819
+
# # '123abc' with the standard jj color coding for shortest name
1820
+
# res+=" ${blue}${VCS_STATUS_COMMIT[1]}${grey}${VCS_STATUS_COMMIT[2]}"
1821
+
1822
+
1823
+
## jj_desc
1824
+
local VCS_STATUS_MESSAGE=$(jj --ignore-working-copy --at-op=@ --no-pager log --no-graph --limit 1 -r "@" -T "coalesce(description.first_line(), if(!empty, '${desc_color_fail}(no description set)'))")
1825
+
[[ -n $VCS_STATUS_MESSAGE ]] && res+=" ${desc_color}${VCS_STATUS_MESSAGE}"
1826
+
1827
+
1828
+
## jj_status
1829
+
local VCS_STATUS_CHANGES=($(jj log --ignore-working-copy --at-op=@ --no-graph --no-pager -r @ -T "diff.summary()" 2> /dev/null | awk 'BEGIN {a=0;d=0;m=0} /^A / {a++} /^D / {d++} /^M / {m++} /^R / {m++} /^C / {a++} END {print(a,d,m)}'))
1830
+
(( VCS_STATUS_CHANGES[1] || VCS_STATUS_CHANGES[2] || VCS_STATUS_CHANGES[3] )) && res+=" "
1831
+
(( VCS_STATUS_CHANGES[1] )) && res+="%F{green}+${VCS_STATUS_CHANGES[1]}"
1832
+
(( VCS_STATUS_CHANGES[2] )) && res+="%F{red}-${VCS_STATUS_CHANGES[2]}"
1833
+
(( VCS_STATUS_CHANGES[3] )) && res+="${yellow}^${VCS_STATUS_CHANGES[3]}"
1834
+
1835
+
1836
+
## jj_op
1837
+
local VCS_STATUS_MESSAGE=$(jj --ignore-working-copy --at-op=@ --no-pager op log --limit 1 --no-graph -T "id.short()")
1838
+
[[ -n $VCS_STATUS_MESSAGE ]] && res+=" ${blue}${VCS_STATUS_MESSAGE}"
1839
+
1840
+
1841
+
# return results
1842
+
echo $res
1843
+
}
1844
+
function jj_status_callback() {
1845
+
emulate -L zsh
1846
+
if [[ $2 -ne 0 ]]; then
1847
+
typeset -g p10k_jj_status=
1848
+
else
1849
+
typeset -g p10k_jj_status="$3"
1850
+
fi
1851
+
typeset -g p10k_jj_status_stale= p10k_jj_status_updated=1
1852
+
p10k display -r
1853
+
}
1854
+
function register_async_worker() {
1855
+
async_start_worker jj_status_worker -u
1856
+
async_unregister_callback jj_status_worker
1857
+
async_register_callback jj_status_worker jj_status_callback
1858
+
}
1859
+
register_async_worker
1860
+
function prompt_jj() {
1861
+
emulate -L zsh -o extended_glob
1862
+
(( $+commands[jj] )) || return
1863
+
[[ -n ./(../)#(.jj)(#qN/) ]] || return
1864
+
typeset -g p10k_jj_status_stale=1 p10k_jj_status_updated=
1865
+
p10k segment -f grey -c '$p10k_jj_status_stale' -e -t '$p10k_jj_status'
1866
+
p10k segment -c '$p10k_jj_status_updated' -e -t '$p10k_jj_status'
1867
+
async_job jj_status_worker jj_status $PWD 2>/dev/null || { register_async_worker; async_job jj_status_worker jj_status $PWD }
1868
+
}
1869
+
1870
+
# Transient prompt works similarly to the builtin transient_rprompt option. It trims down prompt
1871
+
# when accepting a command line. Supported values:
1872
+
#
1873
+
# - off: Don't change prompt when accepting a command line.
1874
+
# - always: Trim down prompt when accepting a command line.
1875
+
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
1876
+
# typed after changing current working directory.
1877
+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
1878
+
1879
+
# Instant prompt mode.
1880
+
#
1881
+
# - off: Disable instant prompt. Choose this if you've tried instant prompt and found
1882
+
# it incompatible with your zsh configuration files.
1883
+
# - quiet: Enable instant prompt and don't print warnings when detecting console output
1884
+
# during zsh initialization. Choose this if you've read and understood
1885
+
# https://github.com/romkatv/powerlevel10k#instant-prompt.
1886
+
# - verbose: Enable instant prompt and print a warning when detecting console output during
1887
+
# zsh initialization. Choose this if you've never tried instant prompt, haven't
1888
+
# seen the warning, or if you are unsure what this all means.
1889
+
typeset -g POWERLEVEL9K_INSTANT_PROMPT=quiet
1890
+
1891
+
# Hot reload allows you to change POWERLEVEL9K options after Powerlevel10k has been initialized.
1892
+
# For example, you can type POWERLEVEL9K_BACKGROUND=red and see your prompt turn red. Hot reload
1893
+
# can slow down prompt by 1-2 milliseconds, so it's better to keep it turned off unless you
1894
+
# really need it.
1895
+
typeset -g POWERLEVEL9K_DISABLE_HOT_RELOAD=true
1896
+
1897
+
# If p10k is already loaded, reload configuration.
1898
+
# This works even with POWERLEVEL9K_DISABLE_HOT_RELOAD=true.
1899
+
(( ! $+functions[p10k] )) || p10k reload
1900
+
}
1901
+
1902
+
# Tell `p10k configure` which file it should overwrite.
1903
+
typeset -g POWERLEVEL9K_CONFIG_FILE=${${(%):-%x}:a}
1904
+
1905
+
(( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}
1906
+
'builtin' 'unset' 'p10k_config_opts'
+50
packetmix/homes/minion/zsh/zshenv.z4h
+50
packetmix/homes/minion/zsh/zshenv.z4h
···
1
+
# SPDX-FileCopyrightText: 2020 Roman Perepelitsa
2
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
6
+
# Documentation: https://github.com/romkatv/zsh4humans/blob/v5/README.md.
7
+
#
8
+
# Do not modify this file unless you know exactly what you are doing.
9
+
# It is strongly recommended to keep all shell customization and configuration
10
+
# (including exported environment variables such as PATH) in ~/.zshrc or in
11
+
# files sourced from ~/.zshrc. If you are certain that you must export some
12
+
# environment variables in ~/.zshenv, do it where indicated by comments below.
13
+
14
+
if [ -n "${ZSH_VERSION-}" ]; then
15
+
# If you are certain that you must export some environment variables
16
+
# in ~/.zshenv (see comments at the top!), do it here:
17
+
#
18
+
# export GOPATH=$HOME/go
19
+
#
20
+
# Do not change anything else in this file.
21
+
22
+
: ${ZDOTDIR:=~}
23
+
setopt no_global_rcs
24
+
[[ -o no_interactive && -z "${Z4H_BOOTSTRAPPING-}" ]] && return
25
+
setopt no_rcs
26
+
unset Z4H_BOOTSTRAPPING
27
+
fi
28
+
29
+
Z4H_URL="https://raw.githubusercontent.com/romkatv/zsh4humans/v5"
30
+
: "${Z4H:=${XDG_CACHE_HOME:-$HOME/.cache}/zsh4humans/v5}"
31
+
32
+
umask o-w
33
+
34
+
if [ ! -e "$Z4H"/z4h.zsh ]; then
35
+
mkdir -p -- "$Z4H" || return
36
+
>&2 printf '\033[33mz4h\033[0m: fetching \033[4mz4h.zsh\033[0m\n'
37
+
if command -v curl >/dev/null 2>&1; then
38
+
curl -fsSL -- "$Z4H_URL"/z4h.zsh >"$Z4H"/z4h.zsh.$$ || return
39
+
elif command -v wget >/dev/null 2>&1; then
40
+
wget -O- -- "$Z4H_URL"/z4h.zsh >"$Z4H"/z4h.zsh.$$ || return
41
+
else
42
+
>&2 printf '\033[33mz4h\033[0m: please install \033[32mcurl\033[0m or \033[32mwget\033[0m\n'
43
+
return 1
44
+
fi
45
+
mv -- "$Z4H"/z4h.zsh.$$ "$Z4H"/z4h.zsh || return
46
+
fi
47
+
48
+
. "$Z4H"/z4h.zsh || return
49
+
50
+
setopt rcs
+112
packetmix/homes/minion/zsh/zshrc.sh
+112
packetmix/homes/minion/zsh/zshrc.sh
···
1
+
# SPDX-FileCopyrightText: 2020 Roman Perepelitsa
2
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
6
+
# Personal Zsh configuration file. It is strongly recommended to keep all
7
+
# shell customization and configuration (including exported environment
8
+
# variables such as PATH) in this file or in files sourced from it.
9
+
#
10
+
# Documentation: https://github.com/romkatv/zsh4humans/blob/v5/README.md.
11
+
12
+
# Periodic auto-update on Zsh startup: 'ask' or 'no'.
13
+
# You can manually run `z4h update` to update everything.
14
+
zstyle ':z4h:' auto-update 'no'
15
+
# Ask whether to auto-update this often; has no effect if auto-update is 'no'.
16
+
zstyle ':z4h:' auto-update-days '28'
17
+
18
+
# Keyboard type: 'mac' or 'pc'.
19
+
zstyle ':z4h:bindkey' keyboard 'pc'
20
+
21
+
# Whether to move prompt to the bottom when zsh starts and on Ctrl+L.
22
+
zstyle ':z4h:' prompt-at-bottom 'yes'
23
+
alias clear=z4h-clear-screen-soft-bottom
24
+
25
+
# Mark up shell's output with semantic information.
26
+
zstyle ':z4h:' term-shell-integration 'yes'
27
+
28
+
# Start tmux (or so-called 'embedded tmux')
29
+
zstyle ':z4h:' start-tmux 'integrated'
30
+
31
+
# Right-arrow key accepts one character ('partial-accept') from
32
+
# command autosuggestions or the whole thing ('accept')?
33
+
zstyle ':z4h:autosuggestions' forward-char 'accept'
34
+
35
+
# Recursively traverse directories when TAB-completing files.
36
+
zstyle ':z4h:fzf-complete' recurse-dirs 'no'
37
+
38
+
# Enable direnv to automatically source .envrc files.
39
+
zstyle ':z4h:direnv' enable 'no' # disabled because we enable direnv the regular way for, https://github.com/romkatv/zsh4humans/issues/202, etc.
40
+
# Show "loading" and "unloading" notifications from direnv.
41
+
zstyle ':z4h:direnv:success' notify 'yes'
42
+
43
+
# Enable ('yes') or disable ('no') automatic teleportation of z4h over
44
+
# SSH when connecting to these hosts.
45
+
# zstyle ':z4h:ssh:midnight' enable 'yes'
46
+
# zstyle ':z4h:ssh:teal' enable 'yes'
47
+
# The default value if none of the overrides above match the hostname.
48
+
zstyle ':z4h:ssh:*' enable 'no'
49
+
50
+
# Send these files over to the remote host when connecting over SSH to the
51
+
# enabled hosts.
52
+
zstyle ':z4h:ssh:*' send-extra-files '~/.nanorc' '~/.env.zsh'
53
+
54
+
# Clone additional Git repositories from GitHub.
55
+
#
56
+
# This doesn't do anything apart from cloning the repository and keeping it
57
+
# up-to-date. Cloned files can be used after `z4h init`. This is just an
58
+
# example. If you don't plan to use Oh My Zsh, delete this line.
59
+
z4h install ohmyzsh/ohmyzsh || return
60
+
61
+
# Install or update core components (fzf, zsh-autosuggestions, etc.) and
62
+
# initialize Zsh. After this point console I/O is unavailable until Zsh
63
+
# is fully initialized. Everything that requires user interaction or can
64
+
# perform network I/O must be done above. Everything else is best done below.
65
+
z4h init || return
66
+
67
+
# Extend PATH.
68
+
path=(~/bin $path)
69
+
70
+
# Export environment variables.
71
+
export GPG_TTY=$TTY
72
+
73
+
# Source additional local files if they exist.
74
+
z4h source ~/.env.zsh
75
+
76
+
# Use additional Git repositories pulled in with `z4h install`.
77
+
#
78
+
# This is just an example that you should delete. It does nothing useful.
79
+
z4h source ohmyzsh/ohmyzsh/lib/diagnostics.zsh # source an individual file
80
+
z4h load ohmyzsh/ohmyzsh/plugins/emoji-clock # load a plugin
81
+
82
+
# Define key bindings.
83
+
z4h bindkey z4h-backward-kill-word Ctrl+Backspace Ctrl+H
84
+
z4h bindkey z4h-backward-kill-zword Ctrl+Alt+Backspace
85
+
86
+
z4h bindkey undo Ctrl+/ Shift+Tab # undo the last command line change
87
+
z4h bindkey redo Alt+/ # redo the last undone command line change
88
+
89
+
z4h bindkey z4h-cd-back Alt+Left # cd into the previous directory
90
+
z4h bindkey z4h-cd-forward Alt+Right # cd into the next directory
91
+
z4h bindkey z4h-cd-up Alt+Up # cd into the parent directory
92
+
z4h bindkey z4h-cd-down Alt+Down # cd into a child directory
93
+
94
+
# Autoload functions.
95
+
autoload -Uz zmv
96
+
97
+
# Define functions and completions.
98
+
function md() { [[ $# == 1 ]] && mkdir -p -- "$1" && cd -- "$1" }
99
+
compdef _directories md
100
+
101
+
# Define named directories: ~w <=> Windows home directory on WSL.
102
+
[[ -z $z4h_win_home ]] || hash -d w=$z4h_win_home
103
+
104
+
# Define aliases.
105
+
alias tree='tree -a -I .git'
106
+
107
+
# Add flags to existing aliases.
108
+
alias ls="${aliases[ls]:-ls} -A"
109
+
110
+
# Set shell options: http://zsh.sourceforge.net/Doc/Release/Options.html.
111
+
setopt glob_dots # no special treatment for file names with a leading dot
112
+
setopt no_auto_menu # require an extra TAB press to open the completion menu
+26
packetmix/homes/minion/zsh.nix
+26
packetmix/homes/minion/zsh.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
programs.zsh = {
7
+
enable = true;
8
+
envExtra = builtins.readFile ./zsh/zshenv.z4h;
9
+
initContent = builtins.readFile ./zsh/zshrc.sh;
10
+
antidote = {
11
+
enable = true;
12
+
plugins = [
13
+
"mafredri/zsh-async path:async.zsh"
14
+
];
15
+
};
16
+
};
17
+
18
+
home.file.".p10k.zsh".source = ./zsh/p10k.zsh;
19
+
20
+
clicks.storage.impermanence.persist.directories = [
21
+
".cache/antidote"
22
+
".cache/zsh4humans"
23
+
".gtimelog"
24
+
".terminfo"
25
+
];
26
+
}
+224
-244
packetmix/homes/niri/niri.nix
+224
-244
packetmix/homes/niri/niri.nix
···
7
7
config,
8
8
pkgs,
9
9
lib,
10
+
system,
10
11
...
11
12
}:
12
13
{
···
33
34
'';
34
35
};
35
36
};
36
-
timers = {
37
-
lock = lib.mkOption {
38
-
type = lib.types.int;
39
-
description = "How long while idling before locking the device (in seconds)";
40
-
default = 300;
41
-
};
42
-
sleep = lib.mkOption {
43
-
type = lib.types.addCheck lib.types.int (x: x >= config.ingredient.niri.niri.timers.lock);
44
-
description = "How long while idling before sleeping the device (in seconds)";
45
-
default = 450;
46
-
};
37
+
lockCommand = lib.mkOption {
38
+
type = lib.types.str;
39
+
description = "The command run when you lock your computer, or when it is locked automatically";
40
+
default = ''${config.programs.niri.package}/bin/niri msg action do-screen-transition && ${pkgs.swaylock}/bin/swaylock -i ${config.ingredient.niri.niri.lockscreen} -s fill -f'';
47
41
};
48
42
overviewBackground = lib.mkOption {
49
43
type = lib.types.path;
···
62
56
};
63
57
64
58
config = {
65
-
programs.niri =
66
-
let
67
-
lock = ''${config.programs.niri.package}/bin/niri msg action do-screen-transition && ${pkgs.swaylock}/bin/swaylock -i ${config.ingredient.niri.niri.lockscreen} -s fill -f'';
68
-
in
69
-
{
70
-
enable = true;
59
+
programs.niri = {
60
+
enable = true;
71
61
72
-
package = pkgs.niri;
62
+
package = pkgs.niri;
73
63
74
-
settings = {
75
-
xwayland-satellite = {
76
-
enable = true;
77
-
path = "${pkgs.xwayland-satellite}/bin/xwayland-satellite";
78
-
};
79
-
environment.NIXOS_OZONE_WL = "1";
64
+
settings = {
65
+
xwayland-satellite = {
66
+
enable = true;
67
+
path = "${
68
+
project.inputs.nixos-unstable.result.${system}.xwayland-satellite
69
+
}/bin/xwayland-satellite";
70
+
};
71
+
environment.NIXOS_OZONE_WL = "1";
80
72
81
-
input.keyboard = {
82
-
track-layout = "window";
83
-
repeat-delay = 200;
84
-
repeat-rate = 25;
73
+
input.keyboard = {
74
+
track-layout = "window";
75
+
repeat-delay = 200;
76
+
repeat-rate = 25;
85
77
86
-
xkb = lib.mkIf (config.home.keyboard != null) {
87
-
layout = if config.home.keyboard.layout == null then "" else config.home.keyboard.layout;
88
-
model = if config.home.keyboard.model == null then "" else config.home.keyboard.model;
89
-
options = builtins.concatStringsSep "," config.home.keyboard.options;
90
-
variant = if config.home.keyboard.variant == null then "" else config.home.keyboard.variant;
91
-
};
78
+
xkb = lib.mkIf (config.home.keyboard != null) {
79
+
layout = if config.home.keyboard.layout == null then "" else config.home.keyboard.layout;
80
+
model = if config.home.keyboard.model == null then "" else config.home.keyboard.model;
81
+
options = builtins.concatStringsSep "," config.home.keyboard.options;
82
+
variant = if config.home.keyboard.variant == null then "" else config.home.keyboard.variant;
92
83
};
84
+
};
93
85
94
-
input.touchpad.natural-scroll = true;
95
-
input.touchpad.click-method = "clickfinger";
86
+
input.touchpad.natural-scroll = true;
87
+
input.touchpad.click-method = "clickfinger";
96
88
97
-
input.warp-mouse-to-focus.enable = true;
98
-
input.focus-follows-mouse = {
99
-
enable = true;
100
-
max-scroll-amount = "0%";
101
-
};
89
+
input.warp-mouse-to-focus.enable = true;
90
+
input.focus-follows-mouse = {
91
+
enable = true;
92
+
max-scroll-amount = "0%";
93
+
};
102
94
103
-
input.power-key-handling.enable = false;
95
+
input.power-key-handling.enable = false;
104
96
105
-
binds =
106
-
let
107
-
inherit (config.lib.niri) actions;
108
-
109
-
mod = "Super";
110
-
mod1 = "Alt";
97
+
binds =
98
+
let
99
+
mod = "Super";
100
+
mod1 = "Alt";
111
101
112
-
generateWorkspaceBindings = workspaceNumber: {
113
-
"${mod}+${builtins.toString (lib.mod workspaceNumber 10)}".action.focus-workspace = [
114
-
workspaceNumber
115
-
];
116
-
"${mod}+Shift+${builtins.toString (lib.mod workspaceNumber 10)}".action.move-column-to-workspace = [
117
-
workspaceNumber
118
-
];
119
-
};
120
-
joinAttrsetList = listOfAttrsets: lib.fold (a: b: a // b) { } listOfAttrsets;
121
-
in
122
-
{
123
-
# General Keybinds
124
-
"${mod}+Q".action.close-window = [ ];
125
-
"${mod}+Shift+Q".action.quit = [ ];
126
-
"${mod}+Return".action.spawn = "${pkgs.ghostty}/bin/ghostty";
127
-
"${mod}+L".action.spawn = [
128
-
"sh"
129
-
"-c"
130
-
lock
102
+
generateWorkspaceBindings = workspaceNumber: {
103
+
"${mod}+${builtins.toString (lib.mod workspaceNumber 10)}".action.focus-workspace = [
104
+
workspaceNumber
105
+
];
106
+
"${mod}+Shift+${builtins.toString (lib.mod workspaceNumber 10)}".action.move-column-to-workspace = [
107
+
workspaceNumber
131
108
];
132
-
"${mod}+P".action.power-off-monitors = [ ];
109
+
};
110
+
joinAttrsetList = listOfAttrsets: lib.fold (a: b: a // b) { } listOfAttrsets;
111
+
in
112
+
{
113
+
# General Keybinds
114
+
"${mod}+Q".action.close-window = [ ];
115
+
"${mod}+Shift+Q".action.quit = [ ];
116
+
"${mod}+Return".action.spawn = "${pkgs.ghostty}/bin/ghostty";
117
+
"${mod}+L".action.spawn = [
118
+
"sh"
119
+
"-c"
120
+
config.ingredient.niri.niri.lockCommand
121
+
];
122
+
"${mod}+P".action.power-off-monitors = [ ];
133
123
134
-
"${mod}+R".action.screenshot = [ ];
135
-
"${mod}+Ctrl+R".action.screenshot-screen = [ ];
136
-
"${mod}+Shift+R".action.screenshot-window = [ ];
137
-
"Print".action.screenshot = [ ];
138
-
"Ctrl+Print".action.screenshot-screen = [ ];
139
-
"Shift+Print".action.screenshot-window = [ ];
124
+
"${mod}+R".action.screenshot = [ ];
125
+
"${mod}+Ctrl+R".action.screenshot-screen = [ ];
126
+
"${mod}+Shift+R".action.screenshot-window = [ ];
127
+
"Print".action.screenshot = [ ];
128
+
"Ctrl+Print".action.screenshot-screen = [ ];
129
+
"Shift+Print".action.screenshot-window = [ ];
140
130
141
-
"${mod}+Space".action.switch-layout = [ "next" ];
142
-
"${mod}+Shift+Space".action.switch-layout = [ "prev" ];
131
+
"${mod}+Space".action.switch-layout = [ "next" ];
132
+
"${mod}+Shift+Space".action.switch-layout = [ "prev" ];
143
133
144
-
"${mod}+Shift+Slash".action.show-hotkey-overlay = [ ];
134
+
"${mod}+Shift+Slash".action.show-hotkey-overlay = [ ];
145
135
146
-
"${mod}+V".action.set-dynamic-cast-monitor = [ ];
147
-
"${mod}+W".action.set-dynamic-cast-window = [ ];
148
-
"${mod}+Shift+V".action.clear-dynamic-cast-target = [ ];
149
-
"${mod}+Shift+W".action.clear-dynamic-cast-target = [ ];
136
+
"${mod}+V".action.set-dynamic-cast-monitor = [ ];
137
+
"${mod}+W".action.set-dynamic-cast-window = [ ];
138
+
"${mod}+Shift+V".action.clear-dynamic-cast-target = [ ];
139
+
"${mod}+Shift+W".action.clear-dynamic-cast-target = [ ];
150
140
151
-
"${mod}+N".action.spawn = [
152
-
"sh"
153
-
"-c"
154
-
"${pkgs.systemd}/bin/systemctl --user start swaync && ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
155
-
];
156
-
# We need to ensure swaync is started, since as it isn't usually until we get a notification
157
-
}
158
-
//
159
-
# Workspace Keybinds
160
-
(lib.pipe (lib.range 1 10) [
161
-
(map generateWorkspaceBindings)
162
-
joinAttrsetList
163
-
])
164
-
//
165
-
# Window Manipulation Bindings
166
-
({
167
-
"${mod}+BracketLeft".action.consume-or-expel-window-left = [ ];
168
-
"${mod}+BracketRight".action.consume-or-expel-window-right = [ ];
169
-
"${mod}+Shift+BracketLeft".action.consume-window-into-column = [ ];
170
-
"${mod}+Shift+BracketRight".action.expel-window-from-column = [ ];
171
-
"${mod}+Slash".action.switch-preset-column-width = [ ];
172
-
"${mod}+${mod1}+F".action.fullscreen-window = [ ];
173
-
"${mod}+${mod1}+Shift+F".action.toggle-windowed-fullscreen = [ ];
141
+
"${mod}+N".action.spawn = [
142
+
"sh"
143
+
"-c"
144
+
"${pkgs.systemd}/bin/systemctl --user start swaync && ${pkgs.swaynotificationcenter}/bin/swaync-client -t"
145
+
];
146
+
# We need to ensure swaync is started, since as it isn't usually until we get a notification
147
+
}
148
+
//
149
+
# Workspace Keybinds
150
+
(lib.pipe (lib.range 1 10) [
151
+
(map generateWorkspaceBindings)
152
+
joinAttrsetList
153
+
])
154
+
//
155
+
# Window Manipulation Bindings
156
+
({
157
+
"${mod}+BracketLeft".action.consume-or-expel-window-left = [ ];
158
+
"${mod}+BracketRight".action.consume-or-expel-window-right = [ ];
159
+
"${mod}+Shift+BracketLeft".action.consume-window-into-column = [ ];
160
+
"${mod}+Shift+BracketRight".action.expel-window-from-column = [ ];
161
+
"${mod}+Slash".action.switch-preset-column-width = [ ];
162
+
"${mod}+${mod1}+F".action.fullscreen-window = [ ];
163
+
"${mod}+${mod1}+Shift+F".action.toggle-windowed-fullscreen = [ ];
174
164
175
-
# Focus
176
-
"${mod}+Up".action.focus-window-or-workspace-up = [ ];
177
-
"${mod}+Down".action.focus-window-or-workspace-down = [ ];
165
+
# Focus
166
+
"${mod}+Up".action.focus-window-or-workspace-up = [ ];
167
+
"${mod}+Down".action.focus-window-or-workspace-down = [ ];
178
168
179
-
# Non Jump Movement
180
-
"${mod}+Shift+Up".action.move-window-up-or-to-workspace-up = [ ];
181
-
"${mod}+Shift+Down".action.move-window-down-or-to-workspace-down = [ ];
182
-
"${mod}+Shift+Left".action.consume-or-expel-window-left = [ ];
183
-
"${mod}+Shift+Right".action.consume-or-expel-window-right = [ ];
169
+
# Non Jump Movement
170
+
"${mod}+Shift+Up".action.move-window-up-or-to-workspace-up = [ ];
171
+
"${mod}+Shift+Down".action.move-window-down-or-to-workspace-down = [ ];
172
+
"${mod}+Shift+Left".action.consume-or-expel-window-left = [ ];
173
+
"${mod}+Shift+Right".action.consume-or-expel-window-right = [ ];
184
174
185
-
# To Monitor
186
-
"${mod}+Shift+Ctrl+Up".action.move-window-to-monitor-up = [ ];
187
-
"${mod}+Shift+Ctrl+Down".action.move-window-to-monitor-down = [ ];
188
-
"${mod}+Shift+Ctrl+Left".action.move-window-to-monitor-left = [ ];
189
-
"${mod}+Shift+Ctrl+Right".action.move-window-to-monitor-right = [ ];
175
+
# To Monitor
176
+
"${mod}+Shift+Ctrl+Up".action.move-window-to-monitor-up = [ ];
177
+
"${mod}+Shift+Ctrl+Down".action.move-window-to-monitor-down = [ ];
178
+
"${mod}+Shift+Ctrl+Left".action.move-window-to-monitor-left = [ ];
179
+
"${mod}+Shift+Ctrl+Right".action.move-window-to-monitor-right = [ ];
190
180
191
-
# To Workspace
192
-
"${mod}+Ctrl+Up".action.move-window-to-workspace-up = [ ];
193
-
"${mod}+Ctrl+Down".action.move-window-to-workspace-down = [ ];
181
+
# To Workspace
182
+
"${mod}+Ctrl+Up".action.move-window-to-workspace-up = [ ];
183
+
"${mod}+Ctrl+Down".action.move-window-to-workspace-down = [ ];
194
184
195
-
# Sizing
196
-
"${mod}+Equal".action.set-window-height = [ "+5%" ];
197
-
"${mod}+Minus".action.set-window-height = [ "-5%" ];
198
-
})
199
-
//
200
-
# Column Manipulation Bindings
201
-
({
202
-
# Focus
203
-
"${mod}+Left".action.focus-column-left = [ ];
204
-
"${mod}+Right".action.focus-column-right = [ ];
205
-
"${mod}+${mod1}+C".action.center-column = [ ];
206
-
"${mod}+F".action.maximize-column = [ ];
185
+
# Sizing
186
+
"${mod}+Equal".action.set-window-height = [ "+5%" ];
187
+
"${mod}+Minus".action.set-window-height = [ "-5%" ];
188
+
})
189
+
//
190
+
# Column Manipulation Bindings
191
+
({
192
+
# Focus
193
+
"${mod}+Left".action.focus-column-left = [ ];
194
+
"${mod}+Right".action.focus-column-right = [ ];
195
+
"${mod}+${mod1}+C".action.center-column = [ ];
196
+
"${mod}+F".action.maximize-column = [ ];
207
197
208
-
# Non Monitor Movement
209
-
"${mod}+${mod1}+Shift+Up".action.move-column-to-workspace-up = [ ];
210
-
"${mod}+${mod1}+Shift+Down".action.move-column-to-workspace-down = [ ];
211
-
"${mod}+${mod1}+Shift+Left".action.move-column-left = [ ];
212
-
"${mod}+${mod1}+Shift+Right".action.move-column-right = [ ];
198
+
# Non Monitor Movement
199
+
"${mod}+${mod1}+Shift+Up".action.move-column-to-workspace-up = [ ];
200
+
"${mod}+${mod1}+Shift+Down".action.move-column-to-workspace-down = [ ];
201
+
"${mod}+${mod1}+Shift+Left".action.move-column-left = [ ];
202
+
"${mod}+${mod1}+Shift+Right".action.move-column-right = [ ];
213
203
214
-
# To Monitor
215
-
"${mod}+${mod1}+Shift+Ctrl+Up".action.move-column-to-monitor-up = [ ];
216
-
"${mod}+${mod1}+Shift+Ctrl+Down".action.move-column-to-monitor-down = [ ];
217
-
"${mod}+${mod1}+Shift+Ctrl+Left".action.move-column-to-monitor-left = [ ];
218
-
"${mod}+${mod1}+Shift+Ctrl+Right".action.move-column-to-monitor-right = [ ];
204
+
# To Monitor
205
+
"${mod}+${mod1}+Shift+Ctrl+Up".action.move-column-to-monitor-up = [ ];
206
+
"${mod}+${mod1}+Shift+Ctrl+Down".action.move-column-to-monitor-down = [ ];
207
+
"${mod}+${mod1}+Shift+Ctrl+Left".action.move-column-to-monitor-left = [ ];
208
+
"${mod}+${mod1}+Shift+Ctrl+Right".action.move-column-to-monitor-right = [ ];
219
209
220
-
# Sizing
221
-
"${mod}+${mod1}+Equal".action.set-column-width = [ "+5%" ];
222
-
"${mod}+${mod1}+Minus".action.set-column-width = [ "-5%" ];
223
-
})
224
-
//
225
-
# Workspace Manipulation Bindings
226
-
({
227
-
# Focus
228
-
"${mod}+Page_Up".action.focus-workspace-up = [ ];
229
-
"${mod}+Page_Down".action.focus-workspace-down = [ ];
210
+
# Sizing
211
+
"${mod}+${mod1}+Equal".action.set-column-width = [ "+5%" ];
212
+
"${mod}+${mod1}+Minus".action.set-column-width = [ "-5%" ];
213
+
})
214
+
//
215
+
# Workspace Manipulation Bindings
216
+
({
217
+
# Focus
218
+
"${mod}+Page_Up".action.focus-workspace-up = [ ];
219
+
"${mod}+Page_Down".action.focus-workspace-down = [ ];
230
220
231
-
# Within Itself
232
-
"${mod}+Shift+Page_Up".action.move-workspace-up = [ ];
233
-
"${mod}+Shift+Page_Down".action.move-workspace-down = [ ];
221
+
# Within Itself
222
+
"${mod}+Shift+Page_Up".action.move-workspace-up = [ ];
223
+
"${mod}+Shift+Page_Down".action.move-workspace-down = [ ];
234
224
235
-
# To Monitor
236
-
"${mod}+Shift+Ctrl+Page_Up".action.move-workspace-to-monitor-up = [ ];
237
-
"${mod}+Shift+Ctrl+Page_Down".action.move-workspace-to-monitor-down = [ ];
238
-
"${mod}+Shift+Ctrl+Home".action.move-workspace-to-monitor-left = [ ];
239
-
"${mod}+Shift+Ctrl+End".action.move-workspace-to-monitor-right = [ ];
225
+
# To Monitor
226
+
"${mod}+Shift+Ctrl+Page_Up".action.move-workspace-to-monitor-up = [ ];
227
+
"${mod}+Shift+Ctrl+Page_Down".action.move-workspace-to-monitor-down = [ ];
228
+
"${mod}+Shift+Ctrl+Home".action.move-workspace-to-monitor-left = [ ];
229
+
"${mod}+Shift+Ctrl+End".action.move-workspace-to-monitor-right = [ ];
240
230
241
-
"${mod}+Space" = {
242
-
action.toggle-overview = [ ];
243
-
repeat = false;
244
-
};
245
-
})
246
-
// {
247
-
# Audio
248
-
"XF86AudioRaiseVolume" = {
249
-
allow-when-locked = true;
250
-
action.spawn = [
251
-
"${pkgs.wireplumber}/bin/wpctl"
252
-
"set-volume"
253
-
"@DEFAULT_AUDIO_SINK@"
254
-
"0.05+"
255
-
];
256
-
};
257
-
"XF86AudioLowerVolume" = {
258
-
allow-when-locked = true;
259
-
action.spawn = [
260
-
"${pkgs.wireplumber}/bin/wpctl"
261
-
"set-volume"
262
-
"@DEFAULT_AUDIO_SINK@"
263
-
"0.05-"
264
-
];
265
-
};
266
-
"XF86AudioMute" = {
267
-
allow-when-locked = true;
268
-
action.spawn = [
269
-
"${pkgs.wireplumber}/bin/wpctl"
270
-
"set-mute"
271
-
"@DEFAULT_AUDIO_SINK@"
272
-
"toggle"
273
-
];
274
-
};
275
-
"XF86AudioMicMute" = {
276
-
allow-when-locked = true;
277
-
action.spawn = [
278
-
"${pkgs.wireplumber}/bin/wpctl"
279
-
"set-mute"
280
-
"@DEFAULT_AUDIO_SOURCE@"
281
-
"toggle"
282
-
];
231
+
"${mod}+Space" = {
232
+
action.toggle-overview = [ ];
233
+
repeat = false;
283
234
};
235
+
})
236
+
// {
237
+
# Audio
238
+
"XF86AudioRaiseVolume" = {
239
+
allow-when-locked = true;
240
+
action.spawn = [
241
+
"${pkgs.wireplumber}/bin/wpctl"
242
+
"set-volume"
243
+
"@DEFAULT_AUDIO_SINK@"
244
+
"0.05+"
245
+
];
284
246
};
247
+
"XF86AudioLowerVolume" = {
248
+
allow-when-locked = true;
249
+
action.spawn = [
250
+
"${pkgs.wireplumber}/bin/wpctl"
251
+
"set-volume"
252
+
"@DEFAULT_AUDIO_SINK@"
253
+
"0.05-"
254
+
];
255
+
};
256
+
"XF86AudioMute" = {
257
+
allow-when-locked = true;
258
+
action.spawn = [
259
+
"${pkgs.wireplumber}/bin/wpctl"
260
+
"set-mute"
261
+
"@DEFAULT_AUDIO_SINK@"
262
+
"toggle"
263
+
];
264
+
};
265
+
"XF86AudioMicMute" = {
266
+
allow-when-locked = true;
267
+
action.spawn = [
268
+
"${pkgs.wireplumber}/bin/wpctl"
269
+
"set-mute"
270
+
"@DEFAULT_AUDIO_SOURCE@"
271
+
"toggle"
272
+
];
273
+
};
274
+
};
285
275
286
-
layout = {
287
-
gaps = 16;
276
+
layout = {
277
+
gaps = 16;
288
278
289
-
center-focused-column = "on-overflow";
279
+
center-focused-column = "on-overflow";
290
280
291
-
preset-column-widths = [
292
-
{ proportion = 1. / 4.; }
293
-
{ proportion = 1. / 3.; }
294
-
{ proportion = 1. / 2.; }
295
-
{ proportion = 2. / 3.; }
296
-
{ proportion = 9. / 10.; }
297
-
]; # TODO: clicks to PR a docs update for niri-flake
298
-
};
281
+
preset-column-widths = [
282
+
{ proportion = 1. / 4.; }
283
+
{ proportion = 1. / 3.; }
284
+
{ proportion = 1. / 2.; }
285
+
{ proportion = 2. / 3.; }
286
+
{ proportion = 9. / 10.; }
287
+
]; # TODO: clicks to PR a docs update for niri-flake
288
+
};
299
289
300
-
prefer-no-csd = true; # No "client-side-decorations" (i.e. client-side window open/close buttons)
301
-
hotkey-overlay.skip-at-startup = true;
302
-
screenshot-path = null;
290
+
prefer-no-csd = true; # No "client-side-decorations" (i.e. client-side window open/close buttons)
291
+
hotkey-overlay.skip-at-startup = true;
292
+
screenshot-path = null;
303
293
304
-
spawn-at-startup = [
305
-
{
306
-
command = [
307
-
"${pkgs.swaybg}/bin/swaybg"
308
-
"-i"
309
-
"${config.ingredient.niri.niri.wallpaper}"
310
-
"-m"
311
-
"fill"
312
-
];
313
-
}
314
-
{
315
-
command = [
316
-
"${pkgs.swayidle}/bin/swayidle"
317
-
"-w"
318
-
"timeout"
319
-
(toString config.ingredient.niri.niri.timers.lock)
320
-
lock
321
-
"timeout"
322
-
(toString config.ingredient.niri.niri.timers.sleep)
323
-
"niri msg action power-off-monitors"
324
-
"resume"
325
-
"niri msg action power-on-monitors" # Not sure if this is really needed - niri normally powers on monitors on a movement action anyway, but maybe this can affect resuming in different ways?
326
-
"before-sleep"
327
-
lock
328
-
];
329
-
}
330
-
];
331
-
};
294
+
spawn-at-startup = [
295
+
{
296
+
command = [
297
+
"${pkgs.swaybg}/bin/swaybg"
298
+
"-i"
299
+
"${config.ingredient.niri.niri.wallpaper}"
300
+
"-m"
301
+
"fill"
302
+
];
303
+
}
304
+
];
332
305
};
306
+
};
333
307
334
308
programs.bash.profileExtra = lib.mkBefore ''
309
+
if [ -z $WAYLAND_DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
310
+
exec ${config.programs.niri.package}/bin/niri-session -l
311
+
fi
312
+
'';
313
+
314
+
programs.zsh.profileExtra = lib.mkBefore ''
335
315
if [ -z $WAYLAND_DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
336
316
exec ${config.programs.niri.package}/bin/niri-session -l
337
317
fi
-2
packetmix/homes/niri/quickshell.nix
-2
packetmix/homes/niri/quickshell.nix
+46
packetmix/homes/niri/swayidle.nix
+46
packetmix/homes/niri/swayidle.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
pkgs,
7
+
lib,
8
+
config,
9
+
...
10
+
}:
11
+
{
12
+
options.ingredient.niri.swayidle.timers = {
13
+
lock = lib.mkOption {
14
+
type = lib.types.int;
15
+
description = "How long while idling before locking the device (in seconds)";
16
+
default = 300;
17
+
};
18
+
sleep = lib.mkOption {
19
+
type = lib.types.addCheck lib.types.int (x: x >= config.ingredient.niri.swayidle.timers.lock);
20
+
description = "How long while idling before sleeping the device (in seconds)";
21
+
default = 450;
22
+
};
23
+
};
24
+
25
+
config.systemd.user.services.swayidle = {
26
+
Unit.After = [ "niri.service" ];
27
+
Install.WantedBy = [ "niri.service" ];
28
+
29
+
Service.ExecStart = builtins.concatStringsSep " " (
30
+
map (arg: "'${arg}'") [
31
+
"${pkgs.swayidle}/bin/swayidle"
32
+
"-w"
33
+
"timeout"
34
+
(toString config.ingredient.niri.swayidle.timers.lock)
35
+
config.ingredient.niri.niri.lockCommand
36
+
"timeout"
37
+
(toString config.ingredient.niri.swayidle.timers.sleep)
38
+
"niri msg action power-off-monitors"
39
+
"resume"
40
+
"niri msg action power-on-monitors" # Not sure if this is really needed - niri normally powers on monitors on a movement action anyway, but maybe this can affect resuming in different ways?
41
+
"before-sleep"
42
+
config.ingredient.niri.niri.lockCommand
43
+
]
44
+
); # There's some nastiness here around "what happens if your commands contain single quotes"... at the moment, don't :)
45
+
};
46
+
}
-9
packetmix/homes/pinea/catppuccin.nix
-9
packetmix/homes/pinea/catppuccin.nix
-11
packetmix/homes/pinea/keyboard.nix
-11
packetmix/homes/pinea/keyboard.nix
-19
packetmix/homes/pinea/misc.nix
-19
packetmix/homes/pinea/misc.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{ pkgs, ... }:
6
-
{
7
-
# Miscellaneous package installs that aren't really big enough to get their own folder
8
-
# Don't place any config that isn't directly adding lines to home.packages here...
9
-
home.packages = [
10
-
pkgs.obs-studio
11
-
pkgs.vlc
12
-
pkgs.python312
13
-
pkgs.playerctl
14
-
pkgs.bun
15
-
pkgs.nodePackages_latest.nodejs
16
-
pkgs.prusa-slicer
17
-
pkgs.kitty
18
-
];
19
-
}
packetmix/homes/pinea/wallpaper-dark.png
packetmix/homes/pinea/wallpaper-dark.png
This is a binary file and will not be displayed.
-3
packetmix/homes/pinea/wallpaper-dark.png.license
-3
packetmix/homes/pinea/wallpaper-dark.png.license
packetmix/homes/pinea/wallpaper.png
packetmix/homes/pinea/wallpaper.png
This is a binary file and will not be displayed.
-3
packetmix/homes/pinea/wallpaper.png.license
-3
packetmix/homes/pinea/wallpaper.png.license
-26
packetmix/homes/pinea/zed.nix
-26
packetmix/homes/pinea/zed.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{ lib, ... }:
6
-
{
7
-
programs.zed-editor = {
8
-
userSettings = {
9
-
helix_mode = lib.mkForce false;
10
-
edit_predictions.mode = lib.mkForce "eager";
11
-
assistant = {
12
-
enabled = true;
13
-
default_model = {
14
-
provider = "copilot_chat";
15
-
model = "gpt-4o";
16
-
};
17
-
inline_alternatives = [
18
-
{
19
-
provider = "copilot_chat";
20
-
model = "gpt-3.5-turbo";
21
-
}
22
-
];
23
-
};
24
-
};
25
-
};
26
-
}
-20
packetmix/inputs.nix
-20
packetmix/inputs.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
let
6
-
pins = import ./npins;
7
-
8
-
settings = {
9
-
nixpkgs.configuration.allowUnfree = true;
10
-
"nixos-24.11" = settings.nixpkgs;
11
-
nixos-unstable = settings.nixpkgs;
12
-
};
13
-
in
14
-
{ config, ... }:
15
-
{
16
-
config.inputs = builtins.mapAttrs (name: value: {
17
-
src = value;
18
-
settings = settings.${name} or config.lib.constants.undefined;
19
-
}) pins;
20
-
}
-8
packetmix/modules/nilla-home/home.nix
-8
packetmix/modules/nilla-home/home.nix
···
4
4
5
5
{ lib, config }:
6
6
let
7
-
inherit (config) inputs;
8
7
homes-type = import ./homes-type.nix { inherit lib config; };
9
8
in
10
9
{
···
12
11
description = "Home-Manager homes to create.";
13
12
default.value = { };
14
13
type = homes-type;
15
-
};
16
-
17
-
config = {
18
-
assertions = lib.attrs.mapToList (name: value: {
19
-
assertion = !(builtins.isNull value.pkgs);
20
-
message = "A Nixpkgs instance is required for the home-manager home \"${name}\", but none was provided and \"inputs.nixpkgs\" does not exist.";
21
-
}) config.homes;
22
14
};
23
15
}
+6
-2
packetmix/modules/nilla-home/homes-type.nix
+6
-2
packetmix/modules/nilla-home/homes-type.nix
···
16
16
name = "home";
17
17
description = "A home-manager home";
18
18
module =
19
-
{ config }@submodule:
19
+
{ config, name }@submodule:
20
20
let
21
21
home_name = config.__module__.args.dynamic.name;
22
22
home_name_parts = builtins.match "([a-z][-a-z0-9]*)(@([-A-Za-z0-9]+))?(:([-_A-Za-z0-9]+))?" home_name;
···
106
106
description = "The created Home Manager home for each of the systems.";
107
107
type = lib.types.attrs.of lib.types.raw;
108
108
writable = false;
109
-
default.value = result;
109
+
default.value =
110
+
if builtins.isNull config.pkgs then
111
+
"A Nixpkgs instance is required for the home-manager home \"${name}\", but none was provided and \"inputs.nixpkgs\" does not exist."
112
+
else
113
+
result;
110
114
};
111
115
};
112
116
+33
-69
packetmix/modules/nilla-home/nixos.nix
+33
-69
packetmix/modules/nilla-home/nixos.nix
···
30
30
31
31
config.modules =
32
32
let
33
-
system = submodule.config.pkgs.system;
34
33
warn' = builtins.warn or builtins.trace; # builtins.warn doesn't exist on some versions of nix/lix
35
34
warnIf =
36
35
condition: message: value:
···
38
37
homeManager = submodule.config.home-manager;
39
38
in
40
39
(lib.fp.pipe [
40
+
(
41
+
value:
42
+
if builtins.isNull homeManager && value != [ ] then
43
+
builtins.throw "A home-manager instance is required to enable homes for the NixOS system \"${name}\", but none was provided and \"inputs.home-manager\" does not exist."
44
+
else
45
+
value
46
+
)
41
47
(lib.attrs.mapToList (
42
48
homeName: home:
43
49
let
44
50
homeNameParts = builtins.match "([a-z][-a-z0-9]*)(@([-A-Za-z0-9]+))?(:([-_A-Za-z0-9]+))?" homeName;
45
51
username = builtins.elemAt homeNameParts 0;
52
+
homeHasHomeManager = !(builtins.isNull home.home-manager);
53
+
homeIsValidForSystem =
54
+
home ? result.${config.pkgs.stdenv.hostPlatform.system or config.pkgs.system};
46
55
in
47
-
{
48
-
inherit home homeName username;
49
-
}
56
+
if !homeHasHomeManager then
57
+
builtins.throw "You've asked for the home \"${homeName}\" to be activated in the NixOS system \"${name}\", but it needs a home-manager instance, none was provided and \"inputs.home-manager\" does not exist."
58
+
else if !homeIsValidForSystem then
59
+
builtins.throw "You've asked for the home \"${homeName}\" to be activated in the NixOS system \"${name}\", but it isn't valid for \"${
60
+
config.pkgs.stdenv.hostPlatform.system or config.pkgs.system
61
+
}\" systems."
62
+
else
63
+
{
64
+
inherit home homeName username;
65
+
}
50
66
))
67
+
(
68
+
values:
69
+
let
70
+
existingUsernames = map (value: value.username) (
71
+
builtins.filter (value: value.username != null) values
72
+
);
73
+
uniqueUsernames = lib.lists.unique existingUsernames;
74
+
in
75
+
if existingUsernames != uniqueUsernames then
76
+
builtins.throw "There are multiple homes for a single user in the NixOS system \"${name}\". Please make sure you've only enabled a single home per user."
77
+
else
78
+
values
79
+
)
51
80
(builtins.map (
52
81
{
53
82
home,
···
94
123
)
95
124
);
96
125
};
97
-
};
98
-
99
-
config = {
100
-
assertions = lib.lists.flatten (
101
-
lib.attrs.mapToList (
102
-
name: value:
103
-
let
104
-
hasNixpkgs = !(builtins.isNull value.pkgs);
105
-
requestedHomes = value.homes != [ ];
106
-
hasHomeManager = !(builtins.isNull value.home-manager);
107
-
in
108
-
[
109
-
{
110
-
assertion = hasNixpkgs;
111
-
message = "A Nixpkgs instance is required for the NixOS system \"${name}\", but none was provided and \"inputs.nixpkgs\" does not exist.";
112
-
}
113
-
{
114
-
assertion = !requestedHomes || hasHomeManager;
115
-
message = "A home-manager instance is required to enable homes for the NixOS system \"${name}\", but none was provided and \"inputs.home-manager\" does not exist.";
116
-
}
117
-
(lib.attrs.mapToList (
118
-
homeName: home:
119
-
let
120
-
homeHasHomeManager = !(builtins.isNull home.home-manager);
121
-
homeIsValidForSystem = home ? result.${value.pkgs.system};
122
-
in
123
-
[
124
-
{
125
-
assertion = homeHasHomeManager;
126
-
message = "You've asked for the home \"${homeName}\" to be activated in the NixOS system \"${name}\", but it needs a home-manager instance, none was provided and \"inputs.home-manager\" does not exist.";
127
-
}
128
-
{
129
-
assertion = !homeHasHomeManager || !hasNixpkgs || homeIsValidForSystem;
130
-
message = "You've asked for the home \"${homeName}\" to be activated in the NixOS system \"${name}\", but it isn't valid for \"${value.pkgs.system}\" systems.";
131
-
}
132
-
]
133
-
) value.homes)
134
-
(
135
-
let
136
-
usernames = lib.attrs.mapToList (
137
-
homeName: home:
138
-
let
139
-
homeHasHomeManager = !(builtins.isNull home.home-manager);
140
-
homeIsValidForSystem = home ? result.${value.pkgs.system};
141
-
in
142
-
if homeHasHomeManager && hasNixpkgs && homeIsValidForSystem then
143
-
let
144
-
homeNameParts = builtins.match "([a-z][-a-z0-9]*)(@([-A-Za-z0-9]+))?(:([-_A-Za-z0-9]+))?" homeName;
145
-
username = builtins.elemAt homeNameParts 0;
146
-
in
147
-
username
148
-
else
149
-
null
150
-
) value.homes;
151
-
existingUsernames = builtins.filter (username: username != null) usernames;
152
-
uniqueUsernames = lib.lists.unique existingUsernames;
153
-
in
154
-
{
155
-
assertion = !hasNixpkgs || (existingUsernames == uniqueUsernames);
156
-
message = "There are multiple homes for a single user in the NixOS system \"${name}\". Please make sure you've only enabled a single home per user.";
157
-
}
158
-
)
159
-
]
160
-
) global.config.systems.nixos
161
-
);
162
126
};
163
127
}
-147
packetmix/nilla.nix
-147
packetmix/nilla.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
let
6
-
pins = import ./npins;
7
-
8
-
nilla = import pins.nilla;
9
-
10
-
settings = {
11
-
nixpkgs.configuration.allowUnfree = true;
12
-
"nixos-24.11" = settings.nixpkgs;
13
-
nixos-unstable = settings.nixpkgs;
14
-
};
15
-
in
16
-
nilla.create (
17
-
{ config, lib }:
18
-
{
19
-
includes = [
20
-
./homes
21
-
./inputs.nix
22
-
./lib
23
-
./modules
24
-
./packages
25
-
./systems
26
-
"${pins.nilla-nixos}/modules/nixos.nix" # We can't use config.inputs here without infinitely-recursing
27
-
];
28
-
29
-
config = {
30
-
packages.allNixOSSystems = {
31
-
systems = [ "x86_64-linux" ];
32
-
33
-
package =
34
-
{ stdenv }:
35
-
stdenv.mkDerivation {
36
-
name = "all-nixos-systems";
37
-
38
-
dontUnpack = true;
39
-
40
-
buildPhase = ''
41
-
mkdir -p $out
42
-
''
43
-
+ (builtins.concatStringsSep "\n" (
44
-
config.lib.attrs.mapToList (
45
-
name: value: ''ln -s "${value.result.config.system.build.toplevel}" "$out/${name}"''
46
-
) config.systems.nixos
47
-
));
48
-
};
49
-
};
50
-
51
-
packages.allHomes = {
52
-
systems = [ "x86_64-linux" ];
53
-
54
-
package =
55
-
{ system, stdenv }:
56
-
stdenv.mkDerivation {
57
-
name = "all-homes";
58
-
59
-
dontUnpack = true;
60
-
61
-
buildPhase = ''
62
-
mkdir -p $out
63
-
''
64
-
+ (builtins.concatStringsSep "\n" (
65
-
config.lib.attrs.mapToList (
66
-
name: value: ''ln -s "${value.result.${system}.activationPackage}" "$out/${name}"''
67
-
) (config.lib.attrs.filter (_: value: value.result ? ${system}) config.homes)
68
-
));
69
-
};
70
-
};
71
-
72
-
packages.helix = {
73
-
systems = [ "x86_64-linux" ];
74
-
75
-
package =
76
-
{ helix }:
77
-
helix.overrideAttrs (
78
-
{
79
-
patches ? [ ],
80
-
...
81
-
}:
82
-
{
83
-
doCheck = false;
84
-
patches = patches ++ [ ./patches/helix/3958-labels-for-config-menus.patch ];
85
-
}
86
-
);
87
-
};
88
-
89
-
packages.reuse = {
90
-
systems = [ "x86_64-linux" ];
91
-
92
-
package =
93
-
{ reuse }:
94
-
reuse.overrideAttrs (
95
-
{
96
-
patches ? [ ],
97
-
...
98
-
}:
99
-
{
100
-
patches = patches ++ [ ./patches/reuse/1191-correct-invocation-for-jujutsu-file-listing.patch ];
101
-
}
102
-
);
103
-
};
104
-
105
-
# With a package set defined, we can create a shell.
106
-
shells.default = {
107
-
# Declare what systems the shell can be used on.
108
-
systems = [ "x86_64-linux" ];
109
-
110
-
# Define our shell environment.
111
-
shell =
112
-
{
113
-
pkgs,
114
-
system,
115
-
npins,
116
-
mkShell,
117
-
kdePackages,
118
-
...
119
-
}:
120
-
mkShell {
121
-
QML_IMPORT_PATH =
122
-
lib.fp.pipe
123
-
[
124
-
(map (pkg: "${pkg}/lib/qt-6/qml"))
125
-
(builtins.concatStringsSep ":")
126
-
]
127
-
[
128
-
config.inputs.nixos-unstable.result.${system}.quickshell
129
-
kdePackages.qtdeclarative
130
-
];
131
-
132
-
packages = [
133
-
config.inputs.nilla-cli.result.packages.nilla-cli.result.${system}
134
-
config.inputs.nilla-home.result.packages.nilla-home.result.${system}
135
-
config.inputs.nilla-nixos.result.packages.nilla-nixos.result.${system}
136
-
config.inputs.nixos-unstable.result.${system}.quickshell
137
-
config.packages.nilla-fmt.result.${system}
138
-
config.packages.treefmt.result.${system}
139
-
(config.inputs.npins.result { inherit pkgs system; })
140
-
kdePackages.qtdeclarative
141
-
config.packages.reuse.result.${system}
142
-
];
143
-
};
144
-
};
145
-
};
146
-
}
147
-
)
-146
packetmix/npins/default.nix
-146
packetmix/npins/default.nix
···
1
-
/*
2
-
This file is provided under the MIT licence:
3
-
4
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the โSoftwareโ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
-
6
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
-
8
-
THE SOFTWARE IS PROVIDED โAS ISโ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
-
*/
10
-
# Generated by npins. Do not modify; will be overwritten regularly
11
-
let
12
-
data = builtins.fromJSON (builtins.readFile ./sources.json);
13
-
version = data.version;
14
-
15
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295
16
-
range =
17
-
first: last: if first > last then [ ] else builtins.genList (n: first + n) (last - first + 1);
18
-
19
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257
20
-
stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1));
21
-
22
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269
23
-
stringAsChars = f: s: concatStrings (map f (stringToCharacters s));
24
-
concatMapStrings = f: list: concatStrings (map f list);
25
-
concatStrings = builtins.concatStringsSep "";
26
-
27
-
# If the environment variable NPINS_OVERRIDE_${name} is set, then use
28
-
# the path directly as opposed to the fetched source.
29
-
# (Taken from Niv for compatibility)
30
-
mayOverride =
31
-
name: path:
32
-
let
33
-
envVarName = "NPINS_OVERRIDE_${saneName}";
34
-
saneName = stringAsChars (c: if (builtins.match "[a-zA-Z0-9]" c) == null then "_" else c) name;
35
-
ersatz = builtins.getEnv envVarName;
36
-
in
37
-
if ersatz == "" then
38
-
path
39
-
else
40
-
# this turns the string into an actual Nix path (for both absolute and
41
-
# relative paths)
42
-
builtins.trace "Overriding path of \"${name}\" with \"${ersatz}\" due to set \"${envVarName}\"" (
43
-
if builtins.substring 0 1 ersatz == "/" then
44
-
/. + ersatz
45
-
else
46
-
/. + builtins.getEnv "PWD" + "/${ersatz}"
47
-
);
48
-
49
-
mkSource =
50
-
name: spec:
51
-
assert spec ? type;
52
-
let
53
-
path =
54
-
if spec.type == "Git" then
55
-
mkGitSource spec
56
-
else if spec.type == "GitRelease" then
57
-
mkGitSource spec
58
-
else if spec.type == "PyPi" then
59
-
mkPyPiSource spec
60
-
else if spec.type == "Channel" then
61
-
mkChannelSource spec
62
-
else if spec.type == "Tarball" then
63
-
mkTarballSource spec
64
-
else
65
-
builtins.throw "Unknown source type ${spec.type}";
66
-
in
67
-
spec // { outPath = mayOverride name path; };
68
-
69
-
mkGitSource =
70
-
{
71
-
repository,
72
-
revision,
73
-
url ? null,
74
-
submodules,
75
-
hash,
76
-
branch ? null,
77
-
...
78
-
}:
79
-
assert repository ? type;
80
-
# At the moment, either it is a plain git repository (which has an url), or it is a GitHub/GitLab repository
81
-
# In the latter case, there we will always be an url to the tarball
82
-
if url != null && !submodules then
83
-
builtins.fetchTarball {
84
-
inherit url;
85
-
sha256 = hash;
86
-
}
87
-
else
88
-
let
89
-
url =
90
-
if repository.type == "Git" then
91
-
repository.url
92
-
else if repository.type == "GitHub" then
93
-
"https://github.com/${repository.owner}/${repository.repo}.git"
94
-
else if repository.type == "GitLab" then
95
-
"${repository.server}/${repository.repo_path}.git"
96
-
else
97
-
throw "Unrecognized repository type ${repository.type}";
98
-
urlToName =
99
-
url: rev:
100
-
let
101
-
matched = builtins.match "^.*/([^/]*)(\\.git)?$" url;
102
-
103
-
short = builtins.substring 0 7 rev;
104
-
105
-
appendShort = if (builtins.match "[a-f0-9]*" rev) != null then "-${short}" else "";
106
-
in
107
-
"${if matched == null then "source" else builtins.head matched}${appendShort}";
108
-
name = urlToName url revision;
109
-
in
110
-
builtins.fetchGit {
111
-
rev = revision;
112
-
narHash = hash;
113
-
114
-
inherit name submodules url;
115
-
};
116
-
117
-
mkPyPiSource =
118
-
{ url, hash, ... }:
119
-
builtins.fetchurl {
120
-
inherit url;
121
-
sha256 = hash;
122
-
};
123
-
124
-
mkChannelSource =
125
-
{ url, hash, ... }:
126
-
builtins.fetchTarball {
127
-
inherit url;
128
-
sha256 = hash;
129
-
};
130
-
131
-
mkTarballSource =
132
-
{
133
-
url,
134
-
locked_url ? url,
135
-
hash,
136
-
...
137
-
}:
138
-
builtins.fetchTarball {
139
-
url = locked_url;
140
-
sha256 = hash;
141
-
};
142
-
in
143
-
if version == 6 then
144
-
builtins.mapAttrs mkSource data.pins
145
-
else
146
-
throw "Unsupported format version ${toString version} in sources.json. Try running `npins upgrade`"
-3
packetmix/npins/default.nix.license
-3
packetmix/npins/default.nix.license
-361
packetmix/npins/sources.json
-361
packetmix/npins/sources.json
···
1
-
{
2
-
"pins": {
3
-
"beancount-autobean": {
4
-
"type": "Git",
5
-
"repository": {
6
-
"type": "GitHub",
7
-
"owner": "SEIAROTg",
8
-
"repo": "autobean"
9
-
},
10
-
"branch": "master",
11
-
"submodules": false,
12
-
"revision": "1a45fc465a9e2eefb595ecadac52c92083922375",
13
-
"url": "https://github.com/SEIAROTg/autobean/archive/1a45fc465a9e2eefb595ecadac52c92083922375.tar.gz",
14
-
"hash": "sha256-9P/kAMYWfTnMWEfMLiDQdJgOUtUy+Zmso6u/qKtSqi0="
15
-
},
16
-
"beancount-beancount_plugin_utils": {
17
-
"type": "Git",
18
-
"repository": {
19
-
"type": "GitHub",
20
-
"owner": "Akuukis",
21
-
"repo": "beancount_plugin_utils"
22
-
},
23
-
"branch": "master",
24
-
"submodules": false,
25
-
"revision": "053807f55b062a4d7bca91612a856da3812cb465",
26
-
"url": "https://github.com/Akuukis/beancount_plugin_utils/archive/053807f55b062a4d7bca91612a856da3812cb465.tar.gz",
27
-
"hash": "sha256-oyfL2K/sS4zZ7cq1P36h0dTcW1m5GUyQ9+IyZGfpb2E="
28
-
},
29
-
"beancount-beancount_share": {
30
-
"type": "Git",
31
-
"repository": {
32
-
"type": "GitHub",
33
-
"owner": "Akuukis",
34
-
"repo": "beancount_share"
35
-
},
36
-
"branch": "master",
37
-
"submodules": false,
38
-
"revision": "4101c45e16948c0683520cebcf88afe4862224c4",
39
-
"url": "https://github.com/Akuukis/beancount_share/archive/4101c45e16948c0683520cebcf88afe4862224c4.tar.gz",
40
-
"hash": "sha256-BW2KEC0pmervT71FBixPcQciEuGcElCd2wW7BZL1xUg="
41
-
},
42
-
"beancount-smart_importer": {
43
-
"type": "Git",
44
-
"repository": {
45
-
"type": "GitHub",
46
-
"owner": "beancount",
47
-
"repo": "smart_importer"
48
-
},
49
-
"branch": "main",
50
-
"submodules": false,
51
-
"revision": "d288eb31c580883491294c5e6c0abb4962f16e79",
52
-
"url": "https://github.com/beancount/smart_importer/archive/d288eb31c580883491294c5e6c0abb4962f16e79.tar.gz",
53
-
"hash": "sha256-1hE/2za1grfCeo1UK81dpLL/JkiLgaRYqLtF09mbDHc="
54
-
},
55
-
"catppuccin": {
56
-
"type": "Git",
57
-
"repository": {
58
-
"type": "GitHub",
59
-
"owner": "catppuccin",
60
-
"repo": "nix"
61
-
},
62
-
"branch": "main",
63
-
"submodules": false,
64
-
"revision": "039cd59357bc6fdd8d9848717069fbc9ee609a73",
65
-
"url": "https://github.com/catppuccin/nix/archive/039cd59357bc6fdd8d9848717069fbc9ee609a73.tar.gz",
66
-
"hash": "sha256-dzKGtCdGbW7v95MS6pxb97u025JP24QsqCLE5bHAumI="
67
-
},
68
-
"collabora-gtimelog": {
69
-
"type": "Git",
70
-
"repository": {
71
-
"type": "GitLab",
72
-
"repo_path": "collabora/gtimelog",
73
-
"server": "https://gitlab.collabora.com/"
74
-
},
75
-
"branch": "master",
76
-
"submodules": false,
77
-
"revision": "8395ec4576cf54411d974675d26f64208acdcee0",
78
-
"url": "https://gitlab.collabora.com/api/v4/projects/collabora%2Fgtimelog/repository/archive.tar.gz?sha=8395ec4576cf54411d974675d26f64208acdcee0",
79
-
"hash": "sha256-M9pCF+XVf5ylxgq0BSUn5Vkg1HZ6i88LDiUDM4Y1Ghs="
80
-
},
81
-
"copyparty": {
82
-
"type": "GitRelease",
83
-
"repository": {
84
-
"type": "GitHub",
85
-
"owner": "9001",
86
-
"repo": "copyparty"
87
-
},
88
-
"pre_releases": false,
89
-
"version_upper_bound": null,
90
-
"release_prefix": null,
91
-
"submodules": false,
92
-
"version": "v1.19.9",
93
-
"revision": "49ce67e9cd76529928224355342d3ff94f9b5e80",
94
-
"url": "https://api.github.com/repos/9001/copyparty/tarball/refs/tags/v1.19.9",
95
-
"hash": "sha256-X75TKOMOkhN9uAPYoEIReRtvfKi+NDWSp2q67dzJFTA="
96
-
},
97
-
"headscale": {
98
-
"type": "Git",
99
-
"repository": {
100
-
"type": "GitHub",
101
-
"owner": "juanfont",
102
-
"repo": "headscale"
103
-
},
104
-
"branch": "main",
105
-
"submodules": false,
106
-
"revision": "40b3d54c1f00850e03db49408af174853414ee57",
107
-
"url": "https://github.com/juanfont/headscale/archive/40b3d54c1f00850e03db49408af174853414ee57.tar.gz",
108
-
"hash": "sha256-ZB2AO5O6413wN7uQ3t3X/GVBebX4N9hQvAHVP01H2Jo="
109
-
},
110
-
"home-manager": {
111
-
"type": "Git",
112
-
"repository": {
113
-
"type": "GitHub",
114
-
"owner": "nix-community",
115
-
"repo": "home-manager"
116
-
},
117
-
"branch": "release-25.05",
118
-
"submodules": false,
119
-
"revision": "f21d9167782c086a33ad53e2311854a8f13c281e",
120
-
"url": "https://github.com/nix-community/home-manager/archive/f21d9167782c086a33ad53e2311854a8f13c281e.tar.gz",
121
-
"hash": "sha256-K6PEI5PYY94TVMH0mX3MbZNYFme7oNRKml/85BpRRAo="
122
-
},
123
-
"home-manager-unstable": {
124
-
"type": "Git",
125
-
"repository": {
126
-
"type": "GitHub",
127
-
"owner": "nix-community",
128
-
"repo": "home-manager"
129
-
},
130
-
"branch": "master",
131
-
"submodules": false,
132
-
"revision": "ec73c06d34859ed01e2ce0e15d5972b4dd539694",
133
-
"url": "https://github.com/nix-community/home-manager/archive/ec73c06d34859ed01e2ce0e15d5972b4dd539694.tar.gz",
134
-
"hash": "sha256-EvJcfgpIfTxw7NdVeUWCtgaNcGHzBAfjo4JlexzOxpk="
135
-
},
136
-
"impermanence": {
137
-
"type": "Git",
138
-
"repository": {
139
-
"type": "GitHub",
140
-
"owner": "nix-community",
141
-
"repo": "impermanence"
142
-
},
143
-
"branch": "master",
144
-
"submodules": false,
145
-
"revision": "4b3e914cdf97a5b536a889e939fb2fd2b043a170",
146
-
"url": "https://github.com/nix-community/impermanence/archive/4b3e914cdf97a5b536a889e939fb2fd2b043a170.tar.gz",
147
-
"hash": "sha256-LJggUHbpyeDvNagTUrdhe/pRVp4pnS6wVKALS782gRI="
148
-
},
149
-
"lix": {
150
-
"type": "Git",
151
-
"repository": {
152
-
"type": "Forgejo",
153
-
"server": "https://git.lix.systems/",
154
-
"owner": "lix-project",
155
-
"repo": "lix"
156
-
},
157
-
"branch": "main",
158
-
"submodules": false,
159
-
"revision": "a9f28622c8c6ced79afdf164bbdd81c26dacfd4d",
160
-
"url": "https://git.lix.systems/lix-project/lix/archive/a9f28622c8c6ced79afdf164bbdd81c26dacfd4d.tar.gz",
161
-
"hash": "sha256-8oOUa6vFoI0LzfgBLPNf10Z1W7LzEwZ+EVFBVFl/k1w="
162
-
},
163
-
"lix-module": {
164
-
"type": "Git",
165
-
"repository": {
166
-
"type": "Forgejo",
167
-
"server": "https://git.lix.systems/",
168
-
"owner": "lix-project",
169
-
"repo": "nixos-module"
170
-
},
171
-
"branch": "main",
172
-
"submodules": false,
173
-
"revision": "3f09a5eb772e02d98bb8878ab687d5b721f00d16",
174
-
"url": "https://git.lix.systems/lix-project/nixos-module/archive/3f09a5eb772e02d98bb8878ab687d5b721f00d16.tar.gz",
175
-
"hash": "sha256-IgD1JR7scSEwlK/YAbmrcTWpAYT30LPldCUHdzXkaMs="
176
-
},
177
-
"lua-multipart": {
178
-
"type": "GitRelease",
179
-
"repository": {
180
-
"type": "GitHub",
181
-
"owner": "Kong",
182
-
"repo": "lua-multipart"
183
-
},
184
-
"pre_releases": true,
185
-
"version_upper_bound": null,
186
-
"release_prefix": null,
187
-
"submodules": false,
188
-
"version": "0.5.11-1",
189
-
"revision": "423092b5d6d03db33bd70773077e8c185e982846",
190
-
"url": "https://api.github.com/repos/Kong/lua-multipart/tarball/refs/tags/0.5.11-1",
191
-
"hash": "sha256-CWQf76/SQEHYX0Xv1UudA4RJtZsMpLY+IU8vjlqnsQY="
192
-
},
193
-
"nilla": {
194
-
"type": "GitRelease",
195
-
"repository": {
196
-
"type": "GitHub",
197
-
"owner": "nilla-nix",
198
-
"repo": "nilla"
199
-
},
200
-
"pre_releases": true,
201
-
"version_upper_bound": null,
202
-
"release_prefix": null,
203
-
"submodules": false,
204
-
"version": "v0.0.0-alpha.14",
205
-
"revision": "2e98ae315a592ad6b6de44670514c048dcc88dc7",
206
-
"url": "https://api.github.com/repos/nilla-nix/nilla/tarball/refs/tags/v0.0.0-alpha.14",
207
-
"hash": "sha256-15lwhWcMonJH6UholMMHDc+p2BoSpGA4AYGrsXQA9Do="
208
-
},
209
-
"nilla-cli": {
210
-
"type": "Git",
211
-
"repository": {
212
-
"type": "GitHub",
213
-
"owner": "nilla-nix",
214
-
"repo": "cli"
215
-
},
216
-
"branch": "main",
217
-
"submodules": false,
218
-
"revision": "6c6c42eaae3d095de6d1b47396c8b74ea57cb442",
219
-
"url": "https://github.com/nilla-nix/cli/archive/6c6c42eaae3d095de6d1b47396c8b74ea57cb442.tar.gz",
220
-
"hash": "sha256-0+d6LZfofBG+4OxnZcFaNg2ycgj1zcOJQUcPL1TEaSc="
221
-
},
222
-
"nilla-home": {
223
-
"type": "GitRelease",
224
-
"repository": {
225
-
"type": "GitHub",
226
-
"owner": "nilla-nix",
227
-
"repo": "home"
228
-
},
229
-
"pre_releases": true,
230
-
"version_upper_bound": null,
231
-
"release_prefix": null,
232
-
"submodules": false,
233
-
"version": "v0.1.1-alpha",
234
-
"revision": "8d8d783cd3ebe38246f66c027a312e5ec0914c58",
235
-
"url": "https://api.github.com/repos/nilla-nix/home/tarball/refs/tags/v0.1.1-alpha",
236
-
"hash": "sha256-34qP2aqJgvJ6rQo5vi9o65kxrxbp2dFi8S7z3B+P74g="
237
-
},
238
-
"nilla-nixos": {
239
-
"type": "Git",
240
-
"repository": {
241
-
"type": "GitHub",
242
-
"owner": "nilla-nix",
243
-
"repo": "nixos"
244
-
},
245
-
"branch": "main",
246
-
"submodules": false,
247
-
"revision": "52c623ae89fe77de669a981c7e92b1504cd99eac",
248
-
"url": "https://github.com/nilla-nix/nixos/archive/52c623ae89fe77de669a981c7e92b1504cd99eac.tar.gz",
249
-
"hash": "sha256-7tadYU5GzOUAxo8XLC18+dk0Rj+QSORUO5cFdpqfSy4="
250
-
},
251
-
"niri": {
252
-
"type": "Git",
253
-
"repository": {
254
-
"type": "GitHub",
255
-
"owner": "sodiboo",
256
-
"repo": "niri-flake"
257
-
},
258
-
"branch": "main",
259
-
"submodules": false,
260
-
"revision": "addd500206b992b1c9211e0dfecb70c1d0c9821a",
261
-
"url": "https://github.com/sodiboo/niri-flake/archive/addd500206b992b1c9211e0dfecb70c1d0c9821a.tar.gz",
262
-
"hash": "sha256-5BUDFG+HnB4ZBLZSxbQ5tuueOVQDkSHi/8tUsJWlXl8="
263
-
},
264
-
"nix-index-database": {
265
-
"type": "Git",
266
-
"repository": {
267
-
"type": "GitHub",
268
-
"owner": "nix-community",
269
-
"repo": "nix-index-database"
270
-
},
271
-
"branch": "main",
272
-
"submodules": false,
273
-
"revision": "050a5feb5d1bb5b6e5fc04a7d3d816923a87c9ea",
274
-
"url": "https://github.com/nix-community/nix-index-database/archive/050a5feb5d1bb5b6e5fc04a7d3d816923a87c9ea.tar.gz",
275
-
"hash": "sha256-3HIpe3P2h1AUPYcAH9cjuX0tZOqJpX01c0iDwoUYNZ8="
276
-
},
277
-
"nixos-unstable": {
278
-
"type": "Channel",
279
-
"name": "nixos-unstable",
280
-
"url": "https://releases.nixos.org/nixos/unstable/nixos-25.11pre861038.c23193b943c6/nixexprs.tar.xz",
281
-
"hash": "sha256-rmyZ6B4DtU9MwkBSEf63NU4czFoM0budKcAtlhjaGEc="
282
-
},
283
-
"nixpkgs": {
284
-
"type": "Channel",
285
-
"name": "nixos-25.05",
286
-
"url": "https://releases.nixos.org/nixos/25.05/nixos-25.05.809873.9a094440e02a/nixexprs.tar.xz",
287
-
"hash": "sha256-mvTtxYIyANBRVxruLSUeuQOp7rV3kzygbRTfeTNY0Yk="
288
-
},
289
-
"npins": {
290
-
"type": "Git",
291
-
"repository": {
292
-
"type": "GitHub",
293
-
"owner": "andir",
294
-
"repo": "npins"
295
-
},
296
-
"branch": "master",
297
-
"submodules": false,
298
-
"revision": "a3b23457f1f524309d14652414002c9cafdee23c",
299
-
"url": "https://github.com/andir/npins/archive/a3b23457f1f524309d14652414002c9cafdee23c.tar.gz",
300
-
"hash": "sha256-S6uCQgfPX5E/QBgnluI+KKmrKu1MM0n2lrNB+agQy2g="
301
-
},
302
-
"scriptfs": {
303
-
"type": "Git",
304
-
"repository": {
305
-
"type": "GitHub",
306
-
"owner": "eewanco",
307
-
"repo": "scriptfs"
308
-
},
309
-
"branch": "master",
310
-
"submodules": false,
311
-
"revision": "82d7e4865c9a8e40bc717c8745d052420365069c",
312
-
"url": "https://github.com/eewanco/scriptfs/archive/82d7e4865c9a8e40bc717c8745d052420365069c.tar.gz",
313
-
"hash": "sha256-WLuOt8zemooHDzK+zWJNBicKu8bg0wXyAGvZIH/po6o="
314
-
},
315
-
"tangled": {
316
-
"type": "GitRelease",
317
-
"repository": {
318
-
"type": "Git",
319
-
"url": "https://tangled.sh/@tangled.sh/core"
320
-
},
321
-
"pre_releases": true,
322
-
"version_upper_bound": null,
323
-
"release_prefix": null,
324
-
"submodules": false,
325
-
"version": "v1.9.0-alpha",
326
-
"revision": "6200797b6377ab37640e9236633df2b845ae4c49",
327
-
"url": null,
328
-
"hash": "sha256-sTJAWsTj49q48CneaO9t/rVswqbmvQWcNTnw/bJGfps="
329
-
},
330
-
"treefmt-nix": {
331
-
"type": "Git",
332
-
"repository": {
333
-
"type": "GitHub",
334
-
"owner": "numtide",
335
-
"repo": "treefmt-nix"
336
-
},
337
-
"branch": "main",
338
-
"submodules": false,
339
-
"revision": "1aabc6c05ccbcbf4a635fb7a90400e44282f61c4",
340
-
"url": "https://github.com/numtide/treefmt-nix/archive/1aabc6c05ccbcbf4a635fb7a90400e44282f61c4.tar.gz",
341
-
"hash": "sha256-F1oFfV51AE259I85av+MAia221XwMHCOtZCMcZLK2Jk="
342
-
},
343
-
"walker": {
344
-
"type": "GitRelease",
345
-
"repository": {
346
-
"type": "GitHub",
347
-
"owner": "abenz1267",
348
-
"repo": "walker"
349
-
},
350
-
"pre_releases": false,
351
-
"version_upper_bound": null,
352
-
"release_prefix": null,
353
-
"submodules": false,
354
-
"version": "v1.0.4",
355
-
"revision": "6ead873b63d857478d5c752876960cac96731243",
356
-
"url": "https://api.github.com/repos/abenz1267/walker/tarball/refs/tags/v1.0.4",
357
-
"hash": "sha256-DVGJG1ZEDxlqXb/T2vnnZD+k31XQ7cq/xE9i6/f1UQc="
358
-
}
359
-
},
360
-
"version": 6
361
-
}
-3
packetmix/npins/sources.json.license
-3
packetmix/npins/sources.json.license
+4
-1
packetmix/packages/OpenLinkHub/default.nix
+4
-1
packetmix/packages/OpenLinkHub/default.nix
···
1
1
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
-
{ config, ... }:
5
4
{
6
5
config.packages.openlinkhub = {
7
6
systems = [ "x86_64-linux" ];
···
15
14
cp ${prev.src}/database/rgb.json $out/var/lib/OpenLinkHub/database
16
15
echo "{}" >> $out/var/lib/OpenLinkHub/database/scheduler.json
17
16
cp -r ${prev.src}/database/keyboard $out/var/lib/OpenLinkHub/database
17
+
cp -r ${prev.src}/database/lcd $out/var/lib/OpenLinkHub/database
18
+
cp -r ${prev.src}/database/language $out/var/lib/OpenLinkHub/database
19
+
cp -r ${prev.src}/database/nexus $out/var/lib/OpenLinkHub/database
20
+
cp -r ${prev.src}/database/external $out/var/lib/OpenLinkHub/database
18
21
19
22
mkdir -p $out/lib/udev/rules.d
20
23
cp ${prev.src}/99-openlinkhub.rules $out/lib/udev/rules.d
+1
-1
packetmix/packages/beancount-smart_importer/default.nix
+1
-1
packetmix/packages/beancount-smart_importer/default.nix
+96
packetmix/packages/bluesky-pds/default.nix
+96
packetmix/packages/bluesky-pds/default.nix
···
1
+
# SPDX-FileCopyrightText: 2003-2025 Eelco Dolstra and the Nixpkgs/NixOS contributors
2
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
6
+
{ config, ... }:
7
+
{
8
+
config.packages.bluesky-atproto-pds = {
9
+
systems = [ "x86_64-linux" ];
10
+
package =
11
+
{
12
+
stdenv,
13
+
nodejs,
14
+
pnpm_9,
15
+
srcOnly,
16
+
python3,
17
+
...
18
+
}:
19
+
let
20
+
nodeSources = srcOnly nodejs;
21
+
pythonEnv = python3.withPackages (p: [ p.setuptools ]);
22
+
in
23
+
stdenv.mkDerivation (finalAttrs: {
24
+
pname = "bluesky-atproto";
25
+
version = config.inputs.bluesky-atproto.src.revision;
26
+
27
+
src = config.inputs.bluesky-atproto.src;
28
+
29
+
nativeBuildInputs = [
30
+
nodejs
31
+
pnpm_9.configHook
32
+
pythonEnv
33
+
];
34
+
35
+
pnpmDeps = pnpm_9.fetchDeps {
36
+
inherit (finalAttrs) pname version src;
37
+
fetcherVersion = 2;
38
+
hash = "sha256-9FYnpZ9wCC2JdpS/AGb8jrURrkrbMi5DTFvZVi7MYPc=";
39
+
};
40
+
41
+
buildPhase = ''
42
+
runHook preBuild
43
+
44
+
pnpm build
45
+
46
+
# copied from nixpkgs to fix better-sqlite3 missing bindings error:
47
+
pushd ./node_modules/.pnpm/better-sqlite3@10.0.0/node_modules/better-sqlite3
48
+
npm run build-release --offline --nodedir="${nodeSources}"
49
+
find build -type f -exec remove-references-to -t "${nodeSources}" {} \;
50
+
popd
51
+
52
+
pushd ./node_modules/.pnpm/better-sqlite3@9.6.0/node_modules/better-sqlite3
53
+
npm run build-release --offline --nodedir="${nodeSources}"
54
+
find build -type f -exec remove-references-to -t "${nodeSources}" {} \;
55
+
popd
56
+
57
+
runHook postBuild
58
+
'';
59
+
60
+
installPhase = ''
61
+
runHook preInstall
62
+
63
+
mkdir -p $out
64
+
65
+
cp -r interop-test-files $out
66
+
cp -r node_modules $out
67
+
cp -r packages $out
68
+
cp -r services $out
69
+
70
+
mkdir -p $out/lib/@atproto
71
+
ln -s $out/packages/pds $out/lib/@atproto/pds
72
+
73
+
runHook postInstall
74
+
'';
75
+
});
76
+
};
77
+
config.packages.bluesky-pds = {
78
+
systems = [ "x86_64-linux" ];
79
+
package =
80
+
{
81
+
stdenv,
82
+
findutils,
83
+
...
84
+
}:
85
+
config.inputs.nixos-unstable.result.${stdenv.hostPlatform.system}.bluesky-pds.overrideAttrs {
86
+
postBuild = ''
87
+
atproto_pds_dir=$(${findutils}/bin/find node_modules/.pnpm -maxdepth 1 -name "@atproto+pds@*")
88
+
rm -r $atproto_pds_dir
89
+
mkdir -p $atproto_pds_dir
90
+
ln -s ${
91
+
config.packages.bluesky-atproto-pds.result.${stdenv.hostPlatform.system}
92
+
}/lib $atproto_pds_dir/node_modules
93
+
'';
94
+
};
95
+
};
96
+
}
+5
-1
packetmix/packages/collabora-gtimelog/default.nix
+5
-1
packetmix/packages/collabora-gtimelog/default.nix
···
7
7
config.packages.collabora-gtimelog = {
8
8
systems = [ "x86_64-linux" ];
9
9
10
+
settings.pkgs = config.inputs.nixos-prev.result;
11
+
10
12
package =
11
13
{
12
14
atk,
···
38
40
gtk3
39
41
harfbuzz
40
42
libsecret
41
-
libsoup_2_4
43
+
(libsoup_2_4.overrideAttrs {
44
+
meta.knownVulnerabilities = [ ]; # FIXME: update libsoup to _3
45
+
})
42
46
pango
43
47
]
44
48
}"
+5
-1
packetmix/packages/default.nix
+5
-1
packetmix/packages/default.nix
···
8
8
./beancount-beancount_plugin_utils
9
9
./beancount-beancount_share
10
10
./beancount-smart_importer
11
+
./bluesky-pds
11
12
./collabora-gtimelog
12
13
./headscale
13
-
./jujutsu
14
+
./josh
15
+
./kavita
14
16
./lua-multipart
15
17
./OpenLinkHub
18
+
./opensearch
16
19
./scriptfs
17
20
./treefmt
21
+
./vs-launcher
18
22
];
19
23
}
+3
-3
packetmix/packages/headscale/default.nix
+3
-3
packetmix/packages/headscale/default.nix
···
10
10
package =
11
11
{
12
12
lib,
13
-
buildGo124Module,
13
+
buildGo125Module,
14
14
...
15
15
}:
16
16
let
17
-
vendorHash = "sha256-hIY6asY3rOIqf/5P6lFmnNCDWcqNPJaj+tqJuOvGJlo=";
17
+
vendorHash = "sha256-VOi4PGZ8I+2MiwtzxpKc/4smsL5KcH/pHVkjJfAFPJ0=";
18
18
commitHash = config.inputs.headscale.src.revision;
19
19
headscaleVersion = commitHash;
20
20
in
21
-
buildGo124Module {
21
+
buildGo125Module {
22
22
pname = "headscale";
23
23
version = headscaleVersion;
24
24
src = config.inputs.headscale.src;
+22
packetmix/packages/josh/default.nix
+22
packetmix/packages/josh/default.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
{ config, ... }:
5
+
{
6
+
config.packages.josh = {
7
+
systems = [ "x86_64-linux" ];
8
+
package =
9
+
{ stdenv, rustPlatform, ... }:
10
+
config.inputs.nixos-unstable.result.${stdenv.hostPlatform.system}.josh.overrideAttrs {
11
+
src = config.inputs.josh.result;
12
+
13
+
cargoDeps = rustPlatform.fetchCargoVendor {
14
+
name = "josh";
15
+
16
+
src = config.inputs.josh.result;
17
+
18
+
hash = "sha256-zY2dCDHhPTggZPhFoONHA4NIpv6k+hzKOUQDzheA/28=";
19
+
};
20
+
};
21
+
};
22
+
}
-732
packetmix/packages/jujutsu/7245-jj-gerrit-upload.patch
-732
packetmix/packages/jujutsu/7245-jj-gerrit-upload.patch
···
1
-
From a85628df2f2bc1b46374de546052f624b09f172b Mon Sep 17 00:00:00 2001
2
-
From: Austin Seipp <aseipp@pobox.com>
3
-
Date: Thu, 18 Jan 2024 00:35:09 -0600
4
-
Subject: [PATCH] cli: basic `jj gerrit upload` implementation
5
-
6
-
This implements the most basic workflow for submitting changes to Gerrit,
7
-
through a verb called 'upload'. This verb is intended to be distinct from the word
8
-
'submit', which for Gerrit means 'merge a change into the repository.'
9
-
10
-
Given a list of revsets (specified by multiple `-r` options), this will parse
11
-
the footers of every commit, collect them, insert a `Change-Id` (if one doesn't
12
-
already exist), and then push them into the given remote.
13
-
14
-
Because the argument is a revset, you may submit entire trees of changes at
15
-
once, including multiple trees of independent changes, e.g.
16
-
17
-
jj gerrit upload -r foo:: -r baz::
18
-
19
-
There are many other improvements that can be applied on top of this, including
20
-
a ton of consistency and "does this make sense?" checks. However, it is flexible
21
-
and a good starting point, and you can in fact both submit and cycle reviews
22
-
with this interface.
23
-
24
-
Signed-off-by: Austin Seipp <aseipp@pobox.com>
25
-
---
26
-
CHANGELOG.md | 2 +
27
-
cli/src/commands/gerrit/mod.rs | 57 +++++
28
-
cli/src/commands/gerrit/upload.rs | 384 +++++++++++++++++++++++++++++++
29
-
cli/src/commands/mod.rs | 7 +
30
-
cli/src/config-schema.json | 14 ++
31
-
cli/tests/cli-reference@.md.snap | 38 +++
32
-
cli/tests/runner.rs | 1 +
33
-
cli/tests/test_gerrit_upload.rs | 89 +++++++
34
-
8 files changed, 592 insertions(+)
35
-
create mode 100644 cli/src/commands/gerrit/mod.rs
36
-
create mode 100644 cli/src/commands/gerrit/upload.rs
37
-
create mode 100644 cli/tests/test_gerrit_upload.rs
38
-
39
-
diff --git a/CHANGELOG.md b/CHANGELOG.md
40
-
index 267b5ed303..9bc1029fcf 100644
41
-
--- a/CHANGELOG.md
42
-
+++ b/CHANGELOG.md
43
-
@@ -107,6 +107,8 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44
-
* The new command `jj redo` can progressively redo operations that were
45
-
previously undone by multiple calls to `jj undo`.
46
-
47
-
+* Gerrit support implemented with the new command `jj gerrit upload`
48
-
+
49
-
### Fixed bugs
50
-
51
-
* `jj git clone` now correctly fetches all tags, unless `--fetch-tags` is
52
-
diff --git a/cli/src/commands/gerrit/mod.rs b/cli/src/commands/gerrit/mod.rs
53
-
new file mode 100644
54
-
index 0000000000..60abdb6702
55
-
--- /dev/null
56
-
+++ b/cli/src/commands/gerrit/mod.rs
57
-
@@ -0,0 +1,57 @@
58
-
+// Copyright 2024 The Jujutsu Authors
59
-
+//
60
-
+// Licensed under the Apache License, Version 2.0 (the "License");
61
-
+// you may not use this file except in compliance with the License.
62
-
+// You may obtain a copy of the License at
63
-
+//
64
-
+// https://www.apache.org/licenses/LICENSE-2.0
65
-
+//
66
-
+// Unless required by applicable law or agreed to in writing, software
67
-
+// distributed under the License is distributed on an "AS IS" BASIS,
68
-
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
69
-
+// See the License for the specific language governing permissions and
70
-
+// limitations under the License.
71
-
+
72
-
+use std::fmt::Debug;
73
-
+
74
-
+use clap::Subcommand;
75
-
+
76
-
+use crate::cli_util::CommandHelper;
77
-
+use crate::command_error::CommandError;
78
-
+use crate::commands::gerrit;
79
-
+use crate::ui::Ui;
80
-
+
81
-
+/// Interact with Gerrit Code Review.
82
-
+#[derive(Subcommand, Clone, Debug)]
83
-
+pub enum GerritCommand {
84
-
+ /// Upload changes to Gerrit for code review, or update existing changes.
85
-
+ ///
86
-
+ /// Uploading in a set of revisions to Gerrit creates a single "change" for
87
-
+ /// each revision included in the revset. This change is then available for
88
-
+ /// review on your Gerrit instance.
89
-
+ ///
90
-
+ /// This command modifies each commit in the revset to include a `Change-Id`
91
-
+ /// footer in its commit message if one does not already exist. Note that
92
-
+ /// this ID is NOT compatible with jj IDs, and is Gerrit-specific.
93
-
+ ///
94
-
+ /// If a change already exists for a given revision (i.e. it contains the
95
-
+ /// same `Change-Id`), this command will update the contents of the existing
96
-
+ /// change to match.
97
-
+ ///
98
-
+ /// Note: this command takes 1-or-more revsets arguments, each of which can
99
-
+ /// resolve to multiple revisions; so you may post trees or ranges of
100
-
+ /// commits to Gerrit for review all at once.
101
-
+ Upload(gerrit::upload::UploadArgs),
102
-
+}
103
-
+
104
-
+pub fn cmd_gerrit(
105
-
+ ui: &mut Ui,
106
-
+ command: &CommandHelper,
107
-
+ subcommand: &GerritCommand,
108
-
+) -> Result<(), CommandError> {
109
-
+ match subcommand {
110
-
+ GerritCommand::Upload(review) => gerrit::upload::cmd_upload(ui, command, review),
111
-
+ }
112
-
+}
113
-
+
114
-
+mod upload;
115
-
diff --git a/cli/src/commands/gerrit/upload.rs b/cli/src/commands/gerrit/upload.rs
116
-
new file mode 100644
117
-
index 0000000000..88c3ca5e97
118
-
--- /dev/null
119
-
+++ b/cli/src/commands/gerrit/upload.rs
120
-
@@ -0,0 +1,384 @@
121
-
+// Copyright 2024 The Jujutsu Authors
122
-
+//
123
-
+// Licensed under the Apache License, Version 2.0 (the "License");
124
-
+// you may not use this file except in compliance with the License.
125
-
+// You may obtain a copy of the License at
126
-
+//
127
-
+// https://www.apache.org/licenses/LICENSE-2.0
128
-
+//
129
-
+// Unless required by applicable law or agreed to in writing, software
130
-
+// distributed under the License is distributed on an "AS IS" BASIS,
131
-
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132
-
+// See the License for the specific language governing permissions and
133
-
+// limitations under the License.
134
-
+
135
-
+use std::fmt::Debug;
136
-
+use std::io::Write as _;
137
-
+use std::rc::Rc;
138
-
+use std::sync::Arc;
139
-
+
140
-
+use bstr::BStr;
141
-
+use indexmap::IndexMap;
142
-
+use itertools::Itertools as _;
143
-
+use jj_lib::backend::CommitId;
144
-
+use jj_lib::commit::Commit;
145
-
+use jj_lib::commit::CommitIteratorExt as _;
146
-
+use jj_lib::git::GitRefUpdate;
147
-
+use jj_lib::git::{self};
148
-
+use jj_lib::object_id::ObjectId as _;
149
-
+use jj_lib::repo::Repo as _;
150
-
+use jj_lib::revset::RevsetExpression;
151
-
+use jj_lib::settings::UserSettings;
152
-
+use jj_lib::store::Store;
153
-
+use jj_lib::trailer::Trailer;
154
-
+use jj_lib::trailer::parse_description_trailers;
155
-
+
156
-
+use crate::cli_util::CommandHelper;
157
-
+use crate::cli_util::RevisionArg;
158
-
+use crate::cli_util::short_commit_hash;
159
-
+use crate::command_error::CommandError;
160
-
+use crate::command_error::internal_error;
161
-
+use crate::command_error::user_error;
162
-
+use crate::command_error::user_error_with_hint;
163
-
+use crate::command_error::user_error_with_message;
164
-
+use crate::git_util::with_remote_git_callbacks;
165
-
+use crate::ui::Ui;
166
-
+
167
-
+#[derive(clap::Args, Clone, Debug)]
168
-
+pub struct UploadArgs {
169
-
+ /// The revset, selecting which commits are sent in to Gerrit. This can be
170
-
+ /// any arbitrary set of commits; they will be modified to include a
171
-
+ /// `Change-Id` footer if one does not already exist, and then sent off to
172
-
+ /// Gerrit for review.
173
-
+ #[arg(long, short = 'r')]
174
-
+ revisions: Vec<RevisionArg>,
175
-
+
176
-
+ /// The location where your changes are intended to land. This should be
177
-
+ /// an upstream branch.
178
-
+ #[arg(long = "remote-branch", short = 'b')]
179
-
+ remote_branch: Option<String>,
180
-
+
181
-
+ /// The Gerrit remote to push to. Can be configured with the `gerrit.remote`
182
-
+ /// repository option as well. This is typically a full SSH URL for your
183
-
+ /// Gerrit instance.
184
-
+ #[arg(long)]
185
-
+ remote: Option<String>,
186
-
+
187
-
+ /// If true, do not actually add `Change-Id`s to commits, and do not push
188
-
+ /// the changes to Gerrit.
189
-
+ #[arg(long = "dry-run", short = 'n')]
190
-
+ dry_run: bool,
191
-
+}
192
-
+
193
-
+/// calculate push remote. The logic is:
194
-
+/// 1. If the user specifies `--remote`, use that
195
-
+/// 2. If the user has 'gerrit.remote' configured, use that
196
-
+/// 3. If there is a default push remote, use that
197
-
+/// 4. If the user has a remote named 'gerrit', use that
198
-
+/// 5. otherwise, bail out
199
-
+fn calculate_push_remote(
200
-
+ store: &Arc<Store>,
201
-
+ config: &UserSettings,
202
-
+ remote: Option<String>,
203
-
+) -> Result<String, CommandError> {
204
-
+ let git_repo = git::get_git_repo(store)?; // will fail if not a git repo
205
-
+ let remotes = git_repo.remote_names();
206
-
+
207
-
+ // case 1
208
-
+ if let Some(remote) = remote {
209
-
+ if remotes.contains(BStr::new(&remote)) {
210
-
+ return Ok(remote);
211
-
+ }
212
-
+ return Err(user_error(format!(
213
-
+ "The remote '{remote}' (specified via `--remote`) does not exist",
214
-
+ )));
215
-
+ }
216
-
+
217
-
+ // case 2
218
-
+ if let Ok(remote) = config.get_string("gerrit.default-remote") {
219
-
+ if remotes.contains(BStr::new(&remote)) {
220
-
+ return Ok(remote);
221
-
+ }
222
-
+ return Err(user_error(format!(
223
-
+ "The remote '{remote}' (configured via `gerrit.default-remote`) does not exist",
224
-
+ )));
225
-
+ }
226
-
+
227
-
+ // case 3
228
-
+ if let Some(remote) = git_repo.remote_default_name(gix::remote::Direction::Push) {
229
-
+ return Ok(remote.to_string());
230
-
+ }
231
-
+
232
-
+ // case 4
233
-
+ if remotes.iter().any(|r| **r == "gerrit") {
234
-
+ return Ok("gerrit".to_owned());
235
-
+ }
236
-
+
237
-
+ // case 5
238
-
+ Err(user_error(
239
-
+ "No remote specified, and no 'gerrit' remote was found",
240
-
+ ))
241
-
+}
242
-
+
243
-
+/// Determine what Gerrit ref and remote to use. The logic is:
244
-
+///
245
-
+/// 1. If the user specifies `--remote-branch branch`, use that
246
-
+/// 2. If the user has 'gerrit.default-remote-branch' configured, use that
247
-
+/// 3. Otherwise, bail out
248
-
+fn calculate_push_ref(
249
-
+ config: &UserSettings,
250
-
+ remote_branch: Option<String>,
251
-
+) -> Result<String, CommandError> {
252
-
+ // case 1
253
-
+ if let Some(remote_branch) = remote_branch {
254
-
+ return Ok(remote_branch);
255
-
+ }
256
-
+
257
-
+ // case 2
258
-
+ if let Ok(branch) = config.get_string("gerrit.default-remote-branch") {
259
-
+ return Ok(branch);
260
-
+ }
261
-
+
262
-
+ // case 3
263
-
+ Err(user_error(
264
-
+ "No target branch specified via --remote-branch, and no 'gerrit.default-remote-branch' \
265
-
+ was found",
266
-
+ ))
267
-
+}
268
-
+
269
-
+pub fn cmd_upload(ui: &mut Ui, command: &CommandHelper, upload: &UploadArgs) -> Result<(), CommandError> {
270
-
+ let mut workspace_command = command.workspace_helper(ui)?;
271
-
+
272
-
+ let revisions: Vec<_> = workspace_command
273
-
+ .parse_union_revsets(ui, &upload.revisions)?
274
-
+ .evaluate_to_commits()?
275
-
+ .try_collect()?;
276
-
+ if revisions.is_empty() {
277
-
+ writeln!(ui.status(), "No revisions to upload.")?;
278
-
+ return Ok(());
279
-
+ }
280
-
+
281
-
+ if revisions
282
-
+ .iter()
283
-
+ .any(|commit| commit.id() == workspace_command.repo().store().root_commit_id())
284
-
+ {
285
-
+ return Err(user_error("Cannot upload the virtual 'root()' commit"));
286
-
+ }
287
-
+
288
-
+ workspace_command.check_rewritable(revisions.iter().ids())?;
289
-
+
290
-
+ // If you have the changes main -> A -> B, and then run `jj gerrit upload B`,
291
-
+ // then that uploads both A and B. Thus, we need to ensure that A also
292
-
+ // has a Change-ID.
293
-
+ // We make an assumption here that all immutable commits already have a
294
-
+ // Change-ID.
295
-
+ let to_upload: Vec<Commit> = workspace_command
296
-
+ .attach_revset_evaluator(
297
-
+ // I'm unsure, but this *might* have significant performance
298
-
+ // implications. If so, we can change it to a maximum depth.
299
-
+ Rc::new(RevsetExpression::Difference(
300
-
+ // Unfortunately, DagRange{root: immutable_heads, heads: commits}
301
-
+ // doesn't work if you're, for example, working on top of an
302
-
+ // immutable commit that isn't in immutable_heads().
303
-
+ Rc::new(RevsetExpression::Ancestors {
304
-
+ heads: RevsetExpression::commits(
305
-
+ revisions.iter().ids().cloned().collect::<Vec<_>>(),
306
-
+ ),
307
-
+ generation: jj_lib::revset::GENERATION_RANGE_FULL,
308
-
+ parents_range: jj_lib::revset::PARENTS_RANGE_FULL,
309
-
+ }),
310
-
+ workspace_command.env().immutable_expression().clone(),
311
-
+ )),
312
-
+ )
313
-
+ .evaluate_to_commits()?
314
-
+ .try_collect()?;
315
-
+
316
-
+ let mut tx = workspace_command.start_transaction();
317
-
+ let base_repo = tx.base_repo().clone();
318
-
+ let store = base_repo.store();
319
-
+
320
-
+ let old_heads = base_repo
321
-
+ .index()
322
-
+ .heads(&mut revisions.iter().ids())
323
-
+ .map_err(internal_error)?;
324
-
+
325
-
+ let git_settings = command.settings().git_settings()?;
326
-
+ let remote = calculate_push_remote(store, command.settings(), upload.remote.clone())?;
327
-
+ let remote_branch = calculate_push_ref(command.settings(), upload.remote_branch.clone())?;
328
-
+
329
-
+ // immediately error and reject any discardable commits, i.e. the
330
-
+ // the empty wcc
331
-
+ for commit in &to_upload {
332
-
+ if commit.is_discardable(tx.repo_mut())? {
333
-
+ return Err(user_error_with_hint(
334
-
+ format!(
335
-
+ "Refusing to upload commit {} because it is an empty commit with no description",
336
-
+ short_commit_hash(commit.id())
337
-
+ ),
338
-
+ "Perhaps you squashed then ran upload? Maybe you meant to upload the parent commit \
339
-
+ instead (eg. @-)",
340
-
+ ));
341
-
+ }
342
-
+ }
343
-
+
344
-
+ let mut old_to_new: IndexMap<CommitId, Commit> = IndexMap::new();
345
-
+ for commit_id in to_upload.iter().map(|c| c.id()).rev() {
346
-
+ let original_commit = store.get_commit(commit_id).unwrap();
347
-
+ let description = original_commit.description().to_owned();
348
-
+ let trailers = parse_description_trailers(&description);
349
-
+
350
-
+ let change_id_trailers: Vec<&Trailer> = trailers
351
-
+ .iter()
352
-
+ .filter(|trailer| trailer.key == "Change-Id")
353
-
+ .collect();
354
-
+
355
-
+ // There shouldn't be multiple change-ID fields. So just error out if
356
-
+ // there is.
357
-
+ if change_id_trailers.len() > 1 {
358
-
+ return Err(user_error(format!(
359
-
+ "multiple Change-Id footers in commit {}",
360
-
+ short_commit_hash(commit_id)
361
-
+ )));
362
-
+ }
363
-
+
364
-
+ // The user can choose to explicitly set their own change-ID to
365
-
+ // override the default change-ID based on the jj change-ID.
366
-
+ if let Some(trailer) = change_id_trailers.first() {
367
-
+ // Check the change-id format is correct.
368
-
+ if trailer.value.len() != 41 || !trailer.value.starts_with('I') {
369
-
+ // Intentionally leave the invalid change IDs as-is.
370
-
+ writeln!(
371
-
+ ui.warning_default(),
372
-
+ "warning: invalid Change-Id footer in commit {}",
373
-
+ short_commit_hash(original_commit.id()),
374
-
+ )?;
375
-
+ }
376
-
+
377
-
+ // map the old commit to itself
378
-
+ old_to_new.insert(original_commit.id().clone(), original_commit.clone());
379
-
+ continue;
380
-
+ }
381
-
+
382
-
+ // Gerrit change id is 40 chars, jj change id is 32, so we need padding.
383
-
+ // To be consistent with `format_gerrit_change_id_trailer``, we pad with
384
-
+ // 6a6a6964 (hex of "jjid").
385
-
+ let gerrit_change_id = format!("I6a6a6964{}", original_commit.change_id().hex());
386
-
+
387
-
+ let new_description = format!(
388
-
+ "{}{}Change-Id: {}\n",
389
-
+ description.trim(),
390
-
+ if trailers.is_empty() { "\n\n" } else { "\n" },
391
-
+ gerrit_change_id
392
-
+ );
393
-
+
394
-
+ let new_parents = original_commit
395
-
+ .parents()
396
-
+ .map(|parent| {
397
-
+ let p = parent.unwrap();
398
-
+ if let Some(rewritten_parent) = old_to_new.get(p.id()) {
399
-
+ rewritten_parent
400
-
+ } else {
401
-
+ &p
402
-
+ }
403
-
+ .id()
404
-
+ .clone()
405
-
+ })
406
-
+ .collect();
407
-
+
408
-
+ // rewrite the set of parents to point to the commits that were
409
-
+ // previously rewritten in toposort order
410
-
+ //
411
-
+ // TODO FIXME (aseipp): this whole dance with toposorting, calculating
412
-
+ // new_parents, and then doing rewrite_commit is roughly equivalent to
413
-
+ // what we do in duplicate.rs as well. we should probably refactor this?
414
-
+ let new_commit = tx
415
-
+ .repo_mut()
416
-
+ .rewrite_commit(&original_commit)
417
-
+ .set_description(new_description)
418
-
+ .set_parents(new_parents)
419
-
+ // Set the timestamp back to the timestamp of the original commit.
420
-
+ // Otherwise, `jj gerrit upload @ && jj gerrit upload @` will upload
421
-
+ // two patchsets with the only difference being the timestamp.
422
-
+ .set_committer(original_commit.committer().clone())
423
-
+ .set_author(original_commit.author().clone())
424
-
+ .write()?;
425
-
+
426
-
+ old_to_new.insert(original_commit.id().clone(), new_commit.clone());
427
-
+ }
428
-
+ writeln!(ui.stderr())?;
429
-
+
430
-
+ let remote_ref = format!("refs/for/{remote_branch}");
431
-
+ writeln!(
432
-
+ ui.stderr(),
433
-
+ "Found {} heads to push to Gerrit (remote '{}'), target branch '{}'",
434
-
+ old_heads.len(),
435
-
+ remote,
436
-
+ remote_branch,
437
-
+ )?;
438
-
+
439
-
+ writeln!(ui.stderr())?;
440
-
+
441
-
+ // NOTE (aseipp): because we are pushing everything to the same remote ref,
442
-
+ // we have to loop and push each commit one at a time, even though
443
-
+ // push_updates in theory supports multiple GitRefUpdates at once, because
444
-
+ // we obviously can't push multiple heads to the same ref.
445
-
+ for head in &old_heads {
446
-
+ write!(
447
-
+ ui.stderr(),
448
-
+ "{}",
449
-
+ if upload.dry_run {
450
-
+ "Dry-run: Would push "
451
-
+ } else {
452
-
+ "Pushing "
453
-
+ }
454
-
+ )?;
455
-
+ // We have to write the old commit here, because the until we finish
456
-
+ // the transaction (which we don't), the new commit is labelled as
457
-
+ // "hidden".
458
-
+ tx.base_workspace_helper().write_commit_summary(
459
-
+ ui.stderr_formatter().as_mut(),
460
-
+ &store.get_commit(head).unwrap(),
461
-
+ )?;
462
-
+ writeln!(ui.stderr())?;
463
-
+
464
-
+ if upload.dry_run {
465
-
+ continue;
466
-
+ }
467
-
+
468
-
+ let new_commit = store
469
-
+ .get_commit(old_to_new.get(head).unwrap().id())
470
-
+ .unwrap();
471
-
+
472
-
+ // how do we get better errors from the remote? 'git push' tells us
473
-
+ // about rejected refs AND ALSO '(nothing changed)' when there are no
474
-
+ // changes to push, but we don't get that here.
475
-
+ with_remote_git_callbacks(ui, |cb| {
476
-
+ git::push_updates(
477
-
+ tx.repo_mut(),
478
-
+ &git_settings,
479
-
+ remote.as_ref(),
480
-
+ &[GitRefUpdate {
481
-
+ qualified_name: remote_ref.clone().into(),
482
-
+ expected_current_target: None,
483
-
+ new_target: Some(new_commit.id().clone()),
484
-
+ }],
485
-
+ cb,
486
-
+ )
487
-
+ })
488
-
+ // Despite the fact that a manual git push will error out with 'no new
489
-
+ // changes' if you're up to date, this git backend appears to silently
490
-
+ // succeed - no idea why.
491
-
+ // It'd be nice if we could distinguish this. We should ideally succeed,
492
-
+ // but give the user a warning.
493
-
+ .map_err(|err| match err {
494
-
+ git::GitPushError::NoSuchRemote(_)
495
-
+ | git::GitPushError::RemoteName(_)
496
-
+ | git::GitPushError::UnexpectedBackend(_) => user_error(err),
497
-
+ git::GitPushError::Subprocess(_) => {
498
-
+ user_error_with_message("Internal git error while pushing to gerrit", err)
499
-
+ }
500
-
+ })?;
501
-
+ }
502
-
+
503
-
+ Ok(())
504
-
+}
505
-
diff --git a/cli/src/commands/mod.rs b/cli/src/commands/mod.rs
506
-
index cdf3c9c3ad..cb7b4ca185 100644
507
-
--- a/cli/src/commands/mod.rs
508
-
+++ b/cli/src/commands/mod.rs
509
-
@@ -30,6 +30,8 @@ mod evolog;
510
-
mod file;
511
-
mod fix;
512
-
#[cfg(feature = "git")]
513
-
+mod gerrit;
514
-
+#[cfg(feature = "git")]
515
-
mod git;
516
-
mod help;
517
-
mod interdiff;
518
-
@@ -115,6 +117,9 @@ enum Command {
519
-
Fix(fix::FixArgs),
520
-
#[cfg(feature = "git")]
521
-
#[command(subcommand)]
522
-
+ Gerrit(gerrit::GerritCommand),
523
-
+ #[cfg(feature = "git")]
524
-
+ #[command(subcommand)]
525
-
Git(git::GitCommand),
526
-
Help(help::HelpArgs),
527
-
Interdiff(interdiff::InterdiffArgs),
528
-
@@ -180,6 +185,8 @@ pub fn run_command(ui: &mut Ui, command_helper: &CommandHelper) -> Result<(), Co
529
-
Command::File(args) => file::cmd_file(ui, command_helper, args),
530
-
Command::Fix(args) => fix::cmd_fix(ui, command_helper, args),
531
-
#[cfg(feature = "git")]
532
-
+ Command::Gerrit(sub_args) => gerrit::cmd_gerrit(ui, command_helper, sub_args),
533
-
+ #[cfg(feature = "git")]
534
-
Command::Git(args) => git::cmd_git(ui, command_helper, args),
535
-
Command::Help(args) => help::cmd_help(ui, command_helper, args),
536
-
Command::Interdiff(args) => interdiff::cmd_interdiff(ui, command_helper, args),
537
-
diff --git a/cli/src/config-schema.json b/cli/src/config-schema.json
538
-
index 887c34e2ba..d15b334ecf 100644
539
-
--- a/cli/src/config-schema.json
540
-
+++ b/cli/src/config-schema.json
541
-
@@ -490,6 +490,20 @@
542
-
}
543
-
}
544
-
},
545
-
+ "gerrit": {
546
-
+ "type": "object",
547
-
+ "description": "Settings for interacting with Gerrit",
548
-
+ "properties": {
549
-
+ "default-remote": {
550
-
+ "type": "string",
551
-
+ "description": "The Gerrit remote to interact with"
552
-
+ },
553
-
+ "default-remote-branch": {
554
-
+ "type": "string",
555
-
+ "description": "The default branch to propose changes for"
556
-
+ }
557
-
+ }
558
-
+ },
559
-
"merge-tools": {
560
-
"type": "object",
561
-
"description": "Tables of custom options to pass to the given merge tool (selected in ui.merge-editor)",
562
-
diff --git a/cli/tests/cli-reference@.md.snap b/cli/tests/cli-reference@.md.snap
563
-
index a97a0ffc55..dff8bcbe37 100644
564
-
--- a/cli/tests/cli-reference@.md.snap
565
-
+++ b/cli/tests/cli-reference@.md.snap
566
-
@@ -45,6 +45,8 @@ This document contains the help content for the `jj` command-line program.
567
-
* [`jj file track`โด](#jj-file-track)
568
-
* [`jj file untrack`โด](#jj-file-untrack)
569
-
* [`jj fix`โด](#jj-fix)
570
-
+* [`jj gerrit`โด](#jj-gerrit)
571
-
+* [`jj gerrit upload`โด](#jj-gerrit-upload)
572
-
* [`jj git`โด](#jj-git)
573
-
* [`jj git clone`โด](#jj-git-clone)
574
-
* [`jj git export`โด](#jj-git-export)
575
-
@@ -139,6 +141,7 @@ To get started, see the tutorial [`jj help -k tutorial`].
576
-
* `evolog` โ Show how a change has evolved over time
577
-
* `file` โ File operations
578
-
* `fix` โ Update files with formatting fixes or other changes
579
-
+* `gerrit` โ Interact with Gerrit Code Review
580
-
* `git` โ Commands for working with Git remotes and the underlying Git repo
581
-
* `help` โ Print this message or the help of the given subcommand(s)
582
-
* `interdiff` โ Compare the changes of two commits
583
-
@@ -1177,6 +1180,41 @@ output of the first tool.
584
-
585
-
586
-
587
-
+## `jj gerrit`
588
-
+
589
-
+Interact with Gerrit Code Review
590
-
+
591
-
+**Usage:** `jj gerrit <COMMAND>`
592
-
+
593
-
+###### **Subcommands:**
594
-
+
595
-
+* `upload` โ Upload changes to Gerrit for code review, or update existing changes
596
-
+
597
-
+
598
-
+
599
-
+## `jj gerrit upload`
600
-
+
601
-
+Upload changes to Gerrit for code review, or update existing changes.
602
-
+
603
-
+Uploading in a set of revisions to Gerrit creates a single "change" for each revision included in the revset. This change is then available for review on your Gerrit instance.
604
-
+
605
-
+This command modifies each commit in the revset to include a `Change-Id` footer in its commit message if one does not already exist. Note that this ID is NOT compatible with jj IDs, and is Gerrit-specific.
606
-
+
607
-
+If a change already exists for a given revision (i.e. it contains the same `Change-Id`), this command will update the contents of the existing change to match.
608
-
+
609
-
+Note: this command takes 1-or-more revsets arguments, each of which can resolve to multiple revisions; so you may post trees or ranges of commits to Gerrit for review all at once.
610
-
+
611
-
+**Usage:** `jj gerrit upload [OPTIONS]`
612
-
+
613
-
+###### **Options:**
614
-
+
615
-
+* `-r`, `--revisions <REVISIONS>` โ The revset, selecting which commits are sent in to Gerrit. This can be any arbitrary set of commits; they will be modified to include a `Change-Id` footer if one does not already exist, and then sent off to Gerrit for review
616
-
+* `-b`, `--remote-branch <REMOTE_BRANCH>` โ The location where your changes are intended to land. This should be an upstream branch
617
-
+* `--remote <REMOTE>` โ The Gerrit remote to push to. Can be configured with the `gerrit.remote` repository option as well. This is typically a full SSH URL for your Gerrit instance
618
-
+* `-n`, `--dry-run` โ If true, do not actually add `Change-Id`s to commits, and do not push the changes to Gerrit
619
-
+
620
-
+
621
-
+
622
-
## `jj git`
623
-
624
-
Commands for working with Git remotes and the underlying Git repo
625
-
diff --git a/cli/tests/runner.rs b/cli/tests/runner.rs
626
-
index 88c1ca2319..f228da5e70 100644
627
-
--- a/cli/tests/runner.rs
628
-
+++ b/cli/tests/runner.rs
629
-
@@ -37,6 +37,7 @@ mod test_file_show_command;
630
-
mod test_file_track_untrack_commands;
631
-
mod test_fix_command;
632
-
mod test_generate_md_cli_help;
633
-
+mod test_gerrit_upload;
634
-
mod test_git_clone;
635
-
mod test_git_colocated;
636
-
mod test_git_fetch;
637
-
diff --git a/cli/tests/test_gerrit_upload.rs b/cli/tests/test_gerrit_upload.rs
638
-
new file mode 100644
639
-
index 0000000000..71543cedd8
640
-
--- /dev/null
641
-
+++ b/cli/tests/test_gerrit_upload.rs
642
-
@@ -0,0 +1,89 @@
643
-
+// Copyright 2025 The Jujutsu Authors
644
-
+//
645
-
+// Licensed under the Apache License, Version 2.0 (the "License");
646
-
+// you may not use this file except in compliance with the License.
647
-
+// You may obtain a copy of the License at
648
-
+//
649
-
+// https://www.apache.org/licenses/LICENSE-2.0
650
-
+//
651
-
+// Unless required by applicable law or agreed to in writing, software
652
-
+// distributed under the License is distributed on an "AS IS" BASIS,
653
-
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
654
-
+// See the License for the specific language governing permissions and
655
-
+// limitations under the License.
656
-
+
657
-
+use crate::common::TestEnvironment;
658
-
+use crate::common::create_commit;
659
-
+
660
-
+#[test]
661
-
+fn test_gerrit_upload_dryrun() {
662
-
+ let test_env = TestEnvironment::default();
663
-
+ test_env.run_jj_in(".", ["git", "init", "repo"]).success();
664
-
+ let work_dir = test_env.work_dir("repo");
665
-
+
666
-
+ create_commit(&work_dir, "a", &[]);
667
-
+ create_commit(&work_dir, "b", &["a"]);
668
-
+ create_commit(&work_dir, "c", &["a"]);
669
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b"]);
670
-
+ insta::assert_snapshot!(output, @r###"
671
-
+ ------- stderr -------
672
-
+ Error: No remote specified, and no 'gerrit' remote was found
673
-
+ [EOF]
674
-
+ [exit status: 1]
675
-
+ "###);
676
-
+
677
-
+ // With remote specified but.
678
-
+ test_env.add_config(r#"gerrit.default-remote="origin""#);
679
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b"]);
680
-
+ insta::assert_snapshot!(output, @r###"
681
-
+ ------- stderr -------
682
-
+ Error: The remote 'origin' (configured via `gerrit.default-remote`) does not exist
683
-
+ [EOF]
684
-
+ [exit status: 1]
685
-
+ "###);
686
-
+
687
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b", "--remote=origin"]);
688
-
+ insta::assert_snapshot!(output, @r###"
689
-
+ ------- stderr -------
690
-
+ Error: The remote 'origin' (specified via `--remote`) does not exist
691
-
+ [EOF]
692
-
+ [exit status: 1]
693
-
+ "###);
694
-
+
695
-
+ let output = work_dir.run_jj([
696
-
+ "git",
697
-
+ "remote",
698
-
+ "add",
699
-
+ "origin",
700
-
+ "http://example.com/repo/foo",
701
-
+ ]);
702
-
+ insta::assert_snapshot!(output, @"");
703
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b", "--remote=origin"]);
704
-
+ insta::assert_snapshot!(output, @r###"
705
-
+ ------- stderr -------
706
-
+ Error: No target branch specified via --remote-branch, and no 'gerrit.default-remote-branch' was found
707
-
+ [EOF]
708
-
+ [exit status: 1]
709
-
+ "###);
710
-
+
711
-
+ test_env.add_config(r#"gerrit.default-remote-branch="main""#);
712
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b", "--dry-run"]);
713
-
+ insta::assert_snapshot!(output, @r###"
714
-
+ ------- stderr -------
715
-
+
716
-
+ Found 1 heads to push to Gerrit (remote 'origin'), target branch 'main'
717
-
+
718
-
+ Dry-run: Would push zsuskuln 123b4d91 b | b
719
-
+ [EOF]
720
-
+ "###);
721
-
+
722
-
+ let output = work_dir.run_jj(["gerrit", "upload", "-r", "b", "--dry-run", "-b", "other"]);
723
-
+ insta::assert_snapshot!(output, @r###"
724
-
+ ------- stderr -------
725
-
+
726
-
+ Found 1 heads to push to Gerrit (remote 'origin'), target branch 'other'
727
-
+
728
-
+ Dry-run: Would push zsuskuln 123b4d91 b | b
729
-
+ [EOF]
730
-
+ "###);
731
-
+}
732
-
-4
packetmix/packages/jujutsu/7245-jj-gerrit-upload.patch.license
-4
packetmix/packages/jujutsu/7245-jj-gerrit-upload.patch.license
-18
packetmix/packages/jujutsu/default.nix
-18
packetmix/packages/jujutsu/default.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{ config, ... }:
6
-
{
7
-
config.packages.jujutsu = {
8
-
systems = [ "x86_64-linux" ];
9
-
package =
10
-
{
11
-
system,
12
-
...
13
-
}:
14
-
config.inputs.nixos-unstable.result.${system}.jujutsu.overrideAttrs (prevAttrs: {
15
-
patches = (prevAttrs.patches or [ ]) ++ [ ./7245-jj-gerrit-upload.patch ];
16
-
});
17
-
};
18
-
}
+87
packetmix/packages/kavita/change-webroot.diff
+87
packetmix/packages/kavita/change-webroot.diff
···
1
+
Commit ID: 60c1f64421b3de57be486e3d6fcac5db29be448c
2
+
Change ID: zyrloqpswtmulpttnvwyonrounzyqpok
3
+
Author : Samuel Shuert <me@thecoded.prof> (2025-10-29 23:29:04 (49 seconds ago))
4
+
Committer: Samuel Shuert <me@thecoded.prof> (2025-10-29 23:29:04 (49 seconds ago))
5
+
Signature: (no signature)
6
+
7
+
(no description set)
8
+
9
+
diff --git a/API/Controllers/FallbackController.cs b/API/Controllers/FallbackController.cs
10
+
index 9aff820278..7d0ead694e 100644
11
+
--- a/API/Controllers/FallbackController.cs
12
+
+++ b/API/Controllers/FallbackController.cs
13
+
@@ -27,7 +27,6 @@
14
+
return NotFound();
15
+
}
16
+
17
+
- return PhysicalFile(Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "index.html"), "text/HTML");
18
+
+ return PhysicalFile(Path.Combine("@webroot@", "index.html"), "text/HTML");
19
+
}
20
+
}
21
+
-
22
+
diff --git a/API/Services/DirectoryService.cs b/API/Services/DirectoryService.cs
23
+
index ecce1957a9..8fc8739e0a 100644
24
+
--- a/API/Services/DirectoryService.cs
25
+
+++ b/API/Services/DirectoryService.cs
26
+
@@ -135,7 +135,7 @@
27
+
ExistOrCreate(SiteThemeDirectory);
28
+
FaviconDirectory = FileSystem.Path.Join(FileSystem.Directory.GetCurrentDirectory(), "config", "favicons");
29
+
ExistOrCreate(FaviconDirectory);
30
+
- LocalizationDirectory = FileSystem.Path.Join(FileSystem.Directory.GetCurrentDirectory(), "I18N");
31
+
+ LocalizationDirectory = FileSystem.Path.Join("@out@/lib/kavita-backend", "I18N");
32
+
CustomizedTemplateDirectory = FileSystem.Path.Join(FileSystem.Directory.GetCurrentDirectory(), "config", "templates");
33
+
ExistOrCreate(CustomizedTemplateDirectory);
34
+
TemplateDirectory = FileSystem.Path.Join(FileSystem.Directory.GetCurrentDirectory(), "EmailTemplates");
35
+
diff --git a/API/Services/LocalizationService.cs b/API/Services/LocalizationService.cs
36
+
index 8abde66474..3a2d29b982 100644
37
+
--- a/API/Services/LocalizationService.cs
38
+
+++ b/API/Services/LocalizationService.cs
39
+
@@ -58,8 +58,7 @@
40
+
else
41
+
{
42
+
_localizationDirectoryUi = directoryService.FileSystem.Path.Join(
43
+
- directoryService.FileSystem.Directory.GetCurrentDirectory(),
44
+
- "wwwroot", "assets/langs");
45
+
+ "@webroot@", "assets/langs");
46
+
}
47
+
48
+
_cacheOptions = new MemoryCacheEntryOptions()
49
+
diff --git a/API/Startup.cs b/API/Startup.cs
50
+
index fad79ceea5..f0801bd6f8 100644
51
+
--- a/API/Startup.cs
52
+
+++ b/API/Startup.cs
53
+
@@ -36,6 +36,7 @@
54
+
using Microsoft.EntityFrameworkCore;
55
+
using Microsoft.Extensions.Configuration;
56
+
using Microsoft.Extensions.DependencyInjection;
57
+
+using Microsoft.Extensions.FileProviders;
58
+
using Microsoft.Extensions.Hosting;
59
+
using Microsoft.Extensions.Logging;
60
+
using Microsoft.Net.Http.Headers;
61
+
@@ -353,9 +354,6 @@
62
+
app.UsePathBase(basePath);
63
+
if (!env.IsDevelopment())
64
+
{
65
+
- // We don't update the index.html in local as we don't serve from there
66
+
- UpdateBaseUrlInIndex(basePath);
67
+
-
68
+
// Update DB with what's in config
69
+
var dataContext = serviceProvider.GetRequiredService<DataContext>();
70
+
var setting = dataContext.ServerSetting.SingleOrDefault(x => x.Key == ServerSettingKey.BaseUrl);
71
+
@@ -399,6 +397,7 @@
72
+
73
+
app.UseStaticFiles(new StaticFileOptions
74
+
{
75
+
+ FileProvider = new PhysicalFileProvider("@webroot@"),
76
+
// bcmap files needed for PDF reader localizations (https://github.com/Kareadita/Kavita/issues/2970)
77
+
// ftl files are needed for PDF zoom options (https://github.com/Kareadita/Kavita/issues/3995)
78
+
ContentTypeProvider = new FileExtensionContentTypeProvider
79
+
@@ -481,7 +480,7 @@
80
+
try
81
+
{
82
+
var htmlDoc = new HtmlDocument();
83
+
- var indexHtmlPath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "index.html");
84
+
+ var indexHtmlPath = Path.Combine("@webroot@", "index.html");
85
+
htmlDoc.Load(indexHtmlPath);
86
+
87
+
var baseNode = htmlDoc.DocumentNode.SelectSingleNode("/html/head/base");
+4
packetmix/packages/kavita/change-webroot.diff.license
+4
packetmix/packages/kavita/change-webroot.diff.license
+67
packetmix/packages/kavita/default.nix
+67
packetmix/packages/kavita/default.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
# SPDX-FileCopyrightText: 2025 Nixpkgs Maintainers
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
{
6
+
config.packages.kavita = {
7
+
systems = [ "x86_64-linux" ];
8
+
package =
9
+
{
10
+
kavita,
11
+
fetchFromGitHub,
12
+
buildNpmPackage,
13
+
buildDotnetModule,
14
+
dotnetCorePackages,
15
+
...
16
+
}:
17
+
kavita.overrideAttrs (
18
+
final: prev: {
19
+
version = "0.8.8.3";
20
+
src = fetchFromGitHub {
21
+
owner = prev.src.owner;
22
+
repo = prev.src.repo;
23
+
rev = "v${final.version}";
24
+
hash = "sha256-Va3scgMxcLhqP+s7x/iDneCPZQCF0iOIQAfTJENcvOI=";
25
+
};
26
+
27
+
backend = buildDotnetModule {
28
+
pname = "kavita-backend";
29
+
inherit (final) version src;
30
+
31
+
patches = [
32
+
# The webroot is hardcoded as ./wwwroot
33
+
./change-webroot.diff
34
+
# NOTE: Upstream frequently removes old database migrations between versions.
35
+
# Currently no migration patches are needed for upgrades from NixOS 24.11 (v0.8.3.2).
36
+
# Future updates should check if migration restoration is needed for supported upgrade paths.
37
+
];
38
+
postPatch = ''
39
+
substituteInPlace API/Services/DirectoryService.cs --subst-var out
40
+
41
+
substituteInPlace API/Startup.cs API/Services/LocalizationService.cs API/Controllers/FallbackController.cs \
42
+
--subst-var-by webroot "${final.frontend}/lib/node_modules/kavita-webui/dist/browser"
43
+
'';
44
+
45
+
executables = [ "API" ];
46
+
47
+
projectFile = "API/API.csproj";
48
+
nugetDeps = ./nuget-deps.json;
49
+
dotnet-sdk = dotnetCorePackages.sdk_9_0;
50
+
dotnet-runtime = dotnetCorePackages.aspnetcore_9_0;
51
+
};
52
+
53
+
frontend = buildNpmPackage {
54
+
pname = "kavita-frontend";
55
+
inherit (final) version src;
56
+
57
+
sourceRoot = "${final.src.name}/UI/Web";
58
+
59
+
npmBuildScript = "prod";
60
+
npmFlags = [ "--legacy-peer-deps" ];
61
+
npmRebuildFlags = [ "--ignore-scripts" ]; # Prevent playwright from trying to install browsers
62
+
npmDepsHash = "sha256-SqW9qeg0CKfVKYsDXmVsnVNmcH7YkaXtXpPjIqGL0i0=";
63
+
};
64
+
}
65
+
);
66
+
};
67
+
}
+1707
packetmix/packages/kavita/nuget-deps.json
+1707
packetmix/packages/kavita/nuget-deps.json
···
1
+
[
2
+
{
3
+
"pname": "AutoMapper",
4
+
"version": "12.0.1",
5
+
"hash": "sha256-a3wCSaOXl+5RKWNi1ddRbNWkOzfodFAUokqPyQiVHGg="
6
+
},
7
+
{
8
+
"pname": "AutoMapper.Extensions.Microsoft.DependencyInjection",
9
+
"version": "12.0.1",
10
+
"hash": "sha256-IfFPa1nHf9cT07gBH5/K6VfiabcHtjjO6X0oV92TWj4="
11
+
},
12
+
{
13
+
"pname": "BouncyCastle.Cryptography",
14
+
"version": "2.5.1",
15
+
"hash": "sha256-ISDd8fS6/cIJIXBFDd7F3FQ0wzWkAo4r8dvycb8iT6c="
16
+
},
17
+
{
18
+
"pname": "Cronos",
19
+
"version": "0.11.0",
20
+
"hash": "sha256-xElG27p+D4RrirLAbEhddOAlDgx95pm5KcOX47UAc10="
21
+
},
22
+
{
23
+
"pname": "CsvHelper",
24
+
"version": "33.1.0",
25
+
"hash": "sha256-pEfX4o63xupI7uuwe6qa05One0pJ7UbzzJqLh4Shju8="
26
+
},
27
+
{
28
+
"pname": "Docnet.Core",
29
+
"version": "2.6.0",
30
+
"hash": "sha256-FcUM3Ox+U6b/vkjX2ZmKTSfIvFEhZoeEfJ94SlCSNqw="
31
+
},
32
+
{
33
+
"pname": "DotNet.Glob",
34
+
"version": "3.1.3",
35
+
"hash": "sha256-5uGSaGY1IqDjq4RCDLPJm0Lg9oyWmyR96OiNeGqSj84="
36
+
},
37
+
{
38
+
"pname": "EasyCaching.Core",
39
+
"version": "1.9.2",
40
+
"hash": "sha256-Fx+3X6kqW0PEb1SpWcAVHmP2x4MVaTGggzAlZGtXf2I="
41
+
},
42
+
{
43
+
"pname": "EasyCaching.InMemory",
44
+
"version": "1.9.2",
45
+
"hash": "sha256-mKtQtByW+nQpA7JSZrajCnfNmPx/eO62JMRjOFq1zEU="
46
+
},
47
+
{
48
+
"pname": "ExCSS",
49
+
"version": "4.3.0",
50
+
"hash": "sha256-7QGbwOlT1EEkgUULKWSJO3H8BzvV4KP/mUZE/9/3r6M="
51
+
},
52
+
{
53
+
"pname": "Flurl",
54
+
"version": "4.0.0",
55
+
"hash": "sha256-qCbO6ELAw+OP/RyrJhrxys5b+Kk2xR4RbzpLOsZYheg="
56
+
},
57
+
{
58
+
"pname": "Flurl.Http",
59
+
"version": "4.0.2",
60
+
"hash": "sha256-V1tlyjoCB9ZyTiwEV3ZYiSP/0q2R2+bqRI+wZLVJATA="
61
+
},
62
+
{
63
+
"pname": "Hangfire",
64
+
"version": "1.8.20",
65
+
"hash": "sha256-54lEtT81UcSf5LMkpo9cwA33lf2JUHqbP3nmfe744jc="
66
+
},
67
+
{
68
+
"pname": "Hangfire.AspNetCore",
69
+
"version": "1.8.20",
70
+
"hash": "sha256-0fjlvnTlikupJO9MVDbWGF0pitF8jeufvcen8RyiHpc="
71
+
},
72
+
{
73
+
"pname": "Hangfire.Core",
74
+
"version": "1.6.17",
75
+
"hash": "sha256-2ir8fLJJyWLxGTp2U12Pm6quH+uyJDfJvI2wRK2EIk8="
76
+
},
77
+
{
78
+
"pname": "Hangfire.Core",
79
+
"version": "1.8.0",
80
+
"hash": "sha256-FhGdGFroLF6CNuxWceNX46H/7taWpoqvbWJ8KzQo7xA="
81
+
},
82
+
{
83
+
"pname": "Hangfire.Core",
84
+
"version": "1.8.20",
85
+
"hash": "sha256-m+OTEYX7+jfhJk880KhfOH52d9TD/I1wfgil5gLlt5s="
86
+
},
87
+
{
88
+
"pname": "Hangfire.InMemory",
89
+
"version": "1.0.0",
90
+
"hash": "sha256-nwMCtNl2TEJiUrG07EIEQZS8efb7/0iNgMa83ruPSTo="
91
+
},
92
+
{
93
+
"pname": "Hangfire.MaximumConcurrentExecutions",
94
+
"version": "1.1.0",
95
+
"hash": "sha256-xkAEW9jG1pc8vRwICyJUTgRg5mEyYOdQoXXpVuAhIaA="
96
+
},
97
+
{
98
+
"pname": "Hangfire.NetCore",
99
+
"version": "1.8.20",
100
+
"hash": "sha256-5ioXNuuNaKL7IW438haeSes32r1tu6tXLdebMxFU6Zs="
101
+
},
102
+
{
103
+
"pname": "Hangfire.SqlServer",
104
+
"version": "1.8.20",
105
+
"hash": "sha256-rMT6IywSAt+JzN+y541g29c+2rmHTeDNA0dqT4gnWn0="
106
+
},
107
+
{
108
+
"pname": "Hangfire.Storage.SQLite",
109
+
"version": "0.4.2",
110
+
"hash": "sha256-//40m/V+kgcDrKJ7/YfX1upOK9ZQEG/Bpbk7c5PmQuk="
111
+
},
112
+
{
113
+
"pname": "HtmlAgilityPack",
114
+
"version": "1.12.2",
115
+
"hash": "sha256-SbzDudru9uTMuMjSTxnKyoT0KbAkd8SVNH9VOfCiR50="
116
+
},
117
+
{
118
+
"pname": "Humanizer.Core",
119
+
"version": "2.14.1",
120
+
"hash": "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="
121
+
},
122
+
{
123
+
"pname": "MailKit",
124
+
"version": "4.13.0",
125
+
"hash": "sha256-mDQpvjLB36QFdBW0EK5Ok3+vk59WxbqEsJ3yO1r+Msc="
126
+
},
127
+
{
128
+
"pname": "MarkdownDeep.NET.Core",
129
+
"version": "1.5.0.4",
130
+
"hash": "sha256-NO//QjqAcE4yDmQARbThyp8fdFrE2U0Bed5XToOG+jI="
131
+
},
132
+
{
133
+
"pname": "Microsoft.AspNetCore.Authentication.Abstractions",
134
+
"version": "2.3.0",
135
+
"hash": "sha256-UwMVhuE3TBEO7G0QJrghhYrgkYw2p9WR87yHQ1ty2RI="
136
+
},
137
+
{
138
+
"pname": "Microsoft.AspNetCore.Authentication.JwtBearer",
139
+
"version": "9.0.10",
140
+
"hash": "sha256-6l1ldFyaaj3s068Va9/dB1r/bwz28yvXFrRqqeApO1o="
141
+
},
142
+
{
143
+
"pname": "Microsoft.AspNetCore.Authentication.OpenIdConnect",
144
+
"version": "9.0.10",
145
+
"hash": "sha256-60LP/JjEanENkOHuC+A2uRnH8LX836p1SWeCGz7WI4I="
146
+
},
147
+
{
148
+
"pname": "Microsoft.AspNetCore.Authorization",
149
+
"version": "2.3.0",
150
+
"hash": "sha256-UbxzeOIh76eCOMgC8A92KwfgOAljyT0k8En+l4PZDtA="
151
+
},
152
+
{
153
+
"pname": "Microsoft.AspNetCore.Authorization.Policy",
154
+
"version": "2.3.0",
155
+
"hash": "sha256-nMV4Yt6810pXITTxMysPIpfenu+3AnY7jq2LkPrkV00="
156
+
},
157
+
{
158
+
"pname": "Microsoft.AspNetCore.Connections.Abstractions",
159
+
"version": "2.3.0",
160
+
"hash": "sha256-qvA9LDr8vOLaERoxia/KRnVmf2q15n7OHKNsBY6t6xw="
161
+
},
162
+
{
163
+
"pname": "Microsoft.AspNetCore.Cryptography.Internal",
164
+
"version": "9.0.10",
165
+
"hash": "sha256-6tRIqQiseoFNIMWxV/DXXbKWPOWA9xV5Q84SXr2j6OU="
166
+
},
167
+
{
168
+
"pname": "Microsoft.AspNetCore.Cryptography.KeyDerivation",
169
+
"version": "9.0.10",
170
+
"hash": "sha256-MFG67dFFudqB0Mm53U+ypKMVeMSviUVbpvD8nftInKk="
171
+
},
172
+
{
173
+
"pname": "Microsoft.AspNetCore.Hosting.Abstractions",
174
+
"version": "2.3.0",
175
+
"hash": "sha256-gtiRMQA5kO1biIVaBLjSq0/jVVpiI8WzS136z/Ex1zs="
176
+
},
177
+
{
178
+
"pname": "Microsoft.AspNetCore.Hosting.Server.Abstractions",
179
+
"version": "2.3.0",
180
+
"hash": "sha256-ltKZ02L3cXu2dCx1JGEt1X8gQgwTABn45QkBsREYxaw="
181
+
},
182
+
{
183
+
"pname": "Microsoft.AspNetCore.Http",
184
+
"version": "2.3.0",
185
+
"hash": "sha256-ubPGvFwMjXbydY1gzo/m31pWq5/SsS/tGRtOotHFfBU="
186
+
},
187
+
{
188
+
"pname": "Microsoft.AspNetCore.Http.Abstractions",
189
+
"version": "2.3.0",
190
+
"hash": "sha256-NrAFzk5IcxmeRk3Zu+rLcq0+KKiAYfygJbAdIt2Zpfk="
191
+
},
192
+
{
193
+
"pname": "Microsoft.AspNetCore.Http.Connections",
194
+
"version": "1.2.0",
195
+
"hash": "sha256-uev0FzYG2Ppl09h//B3BFxooD0uRm0ENO2jgOsABedM="
196
+
},
197
+
{
198
+
"pname": "Microsoft.AspNetCore.Http.Connections.Common",
199
+
"version": "1.2.0",
200
+
"hash": "sha256-eXIg7vJSl1x0xWcxTKmgUiGRJnEfnp/TEe0xqL0629w="
201
+
},
202
+
{
203
+
"pname": "Microsoft.AspNetCore.Http.Extensions",
204
+
"version": "2.3.0",
205
+
"hash": "sha256-sOVwC5wK5w85R+HbYkBlfPpmknyAEig3g0uVnTSGwhI="
206
+
},
207
+
{
208
+
"pname": "Microsoft.AspNetCore.Http.Features",
209
+
"version": "2.3.0",
210
+
"hash": "sha256-QkNFS3ScDLyt0XppATSogbF1raSQJN+wStcnAsSoUJw="
211
+
},
212
+
{
213
+
"pname": "Microsoft.AspNetCore.Identity.EntityFrameworkCore",
214
+
"version": "9.0.10",
215
+
"hash": "sha256-Hbz3KMfcbODbd+FDOzf+bo08WTJ+mZz9cdzY+tnmA6g="
216
+
},
217
+
{
218
+
"pname": "Microsoft.AspNetCore.Routing",
219
+
"version": "2.3.0",
220
+
"hash": "sha256-bXrYeVgI+sm2e5eOCwOkdWyCf5b7dQ8kv+pJRaeLiHI="
221
+
},
222
+
{
223
+
"pname": "Microsoft.AspNetCore.Routing.Abstractions",
224
+
"version": "2.3.0",
225
+
"hash": "sha256-pSPpwAU/zEidmBcRjSuz71fs5CIBRWF8yp/ujsIBXok="
226
+
},
227
+
{
228
+
"pname": "Microsoft.AspNetCore.SignalR",
229
+
"version": "1.2.0",
230
+
"hash": "sha256-83ogiJwoHL0XBOnGFQYopGTlzEyen1ep4aXesWSl/sg="
231
+
},
232
+
{
233
+
"pname": "Microsoft.AspNetCore.SignalR.Common",
234
+
"version": "1.2.0",
235
+
"hash": "sha256-ULMhoU12HCOE6BMAjdZpsbgIPGjtHeggnn7RkyPHmag="
236
+
},
237
+
{
238
+
"pname": "Microsoft.AspNetCore.SignalR.Core",
239
+
"version": "1.1.0",
240
+
"hash": "sha256-8NYrz6J0cVF+eBW/2B6oObwtD82Ze74H6TV+a1xRPtM="
241
+
},
242
+
{
243
+
"pname": "Microsoft.AspNetCore.SignalR.Core",
244
+
"version": "1.2.0",
245
+
"hash": "sha256-FbLZ4BbD5wYOoEyfqZ9C7Y5hJldXlbm1q3QJlkxgp68="
246
+
},
247
+
{
248
+
"pname": "Microsoft.AspNetCore.SignalR.Protocols.Json",
249
+
"version": "1.2.0",
250
+
"hash": "sha256-j2oYNJEX9r4owDiHMI83cglxkyP5Gty0Y0aFzA7avBo="
251
+
},
252
+
{
253
+
"pname": "Microsoft.AspNetCore.WebSockets",
254
+
"version": "2.3.0",
255
+
"hash": "sha256-D3h1Im37SQlDnIl3LiKb7Roje34qPeaRoeP3nEm0p3Y="
256
+
},
257
+
{
258
+
"pname": "Microsoft.AspNetCore.WebUtilities",
259
+
"version": "2.3.0",
260
+
"hash": "sha256-oJMEP44Q9ClhbyZUPtSb9jqQyJJ/dD4DHElRvkYpIOo="
261
+
},
262
+
{
263
+
"pname": "Microsoft.Bcl.AsyncInterfaces",
264
+
"version": "7.0.0",
265
+
"hash": "sha256-1e031E26iraIqun84ad0fCIR4MJZ1hcQo4yFN+B7UfE="
266
+
},
267
+
{
268
+
"pname": "Microsoft.Build.Framework",
269
+
"version": "16.10.0",
270
+
"hash": "sha256-Sj41LE1YQ/NfOdiDf5YnZgWSwGOzQ2uVvP1LgF/HSJ0="
271
+
},
272
+
{
273
+
"pname": "Microsoft.Build.Framework",
274
+
"version": "17.8.3",
275
+
"hash": "sha256-Rp4dN8ejOXqclIKMUXYvIliM6IYB7WMckMLwdCbVZ34="
276
+
},
277
+
{
278
+
"pname": "Microsoft.Build.Locator",
279
+
"version": "1.7.8",
280
+
"hash": "sha256-VhZ4jiJi17Cd5AkENXL1tjG9dV/oGj0aY67IGYd7vNs="
281
+
},
282
+
{
283
+
"pname": "Microsoft.CodeAnalysis.Analyzers",
284
+
"version": "3.3.4",
285
+
"hash": "sha256-qDzTfZBSCvAUu9gzq2k+LOvh6/eRvJ9++VCNck/ZpnE="
286
+
},
287
+
{
288
+
"pname": "Microsoft.CodeAnalysis.Common",
289
+
"version": "4.8.0",
290
+
"hash": "sha256-3IEinVTZq6/aajMVA8XTRO3LTIEt0PuhGyITGJLtqz4="
291
+
},
292
+
{
293
+
"pname": "Microsoft.CodeAnalysis.CSharp",
294
+
"version": "4.8.0",
295
+
"hash": "sha256-MmOnXJvd/ezs5UPcqyGLnbZz5m+VedpRfB+kFZeeqkU="
296
+
},
297
+
{
298
+
"pname": "Microsoft.CodeAnalysis.CSharp.Workspaces",
299
+
"version": "4.8.0",
300
+
"hash": "sha256-WNzc+6mKqzPviOI0WMdhKyrWs8u32bfGj2XwmfL7bwE="
301
+
},
302
+
{
303
+
"pname": "Microsoft.CodeAnalysis.Workspaces.Common",
304
+
"version": "4.8.0",
305
+
"hash": "sha256-X8R4SpWVO/gpip5erVZf5jCCx8EX3VzIRtNrQiLDIoM="
306
+
},
307
+
{
308
+
"pname": "Microsoft.CodeAnalysis.Workspaces.MSBuild",
309
+
"version": "4.8.0",
310
+
"hash": "sha256-hxpMKC6OF8OaIiSZhAgJ+Rw7M8nqS6xHdUURnRRxJmU="
311
+
},
312
+
{
313
+
"pname": "Microsoft.CSharp",
314
+
"version": "4.7.0",
315
+
"hash": "sha256-Enknv2RsFF68lEPdrf5M+BpV1kHoLTVRApKUwuk/pj0="
316
+
},
317
+
{
318
+
"pname": "Microsoft.Data.Sqlite.Core",
319
+
"version": "9.0.10",
320
+
"hash": "sha256-prsCR2WzQAhbhdZ30xk+/wvLt6rDj0M3k1tvyoD6uYM="
321
+
},
322
+
{
323
+
"pname": "Microsoft.EntityFrameworkCore",
324
+
"version": "9.0.10",
325
+
"hash": "sha256-Zm4oMVeloK2WmPskzg4l3SXjJuC+sRg3O5aiTK5rHvw="
326
+
},
327
+
{
328
+
"pname": "Microsoft.EntityFrameworkCore.Abstractions",
329
+
"version": "9.0.10",
330
+
"hash": "sha256-FB+8WtFYKn1PH9R3pgKw7dNJiJDCcS78UkeRkxdOuCk="
331
+
},
332
+
{
333
+
"pname": "Microsoft.EntityFrameworkCore.Analyzers",
334
+
"version": "9.0.10",
335
+
"hash": "sha256-q6w0uQ4qMAe2EuA65a3rk18rhGXuGVYMrdrIzD5Z+tw="
336
+
},
337
+
{
338
+
"pname": "Microsoft.EntityFrameworkCore.Design",
339
+
"version": "9.0.10",
340
+
"hash": "sha256-Zb5u2PySq+VuISn4bSTTDp6sN05ml94eK5O3dZAGO9g="
341
+
},
342
+
{
343
+
"pname": "Microsoft.EntityFrameworkCore.Relational",
344
+
"version": "9.0.10",
345
+
"hash": "sha256-2XHQOKvs4mAXwl8vEZpdi6ZtDFhK2hPusRMFemu3Shw="
346
+
},
347
+
{
348
+
"pname": "Microsoft.EntityFrameworkCore.Sqlite",
349
+
"version": "9.0.10",
350
+
"hash": "sha256-LunzXQSLdZZL1aTlg8E8Jj58oKXniJwYx9zQasPbM2I="
351
+
},
352
+
{
353
+
"pname": "Microsoft.EntityFrameworkCore.Sqlite.Core",
354
+
"version": "9.0.10",
355
+
"hash": "sha256-3uBgFul0W3+7MaxwRjZoowQ9iSw58jYPUChyWG/3UF4="
356
+
},
357
+
{
358
+
"pname": "Microsoft.Extensions.ApiDescription.Server",
359
+
"version": "9.0.0",
360
+
"hash": "sha256-dvSRCpheFixWJk+ZJ2FyOSodjNPnkW9fWSYkl62/giY="
361
+
},
362
+
{
363
+
"pname": "Microsoft.Extensions.Caching.Abstractions",
364
+
"version": "9.0.10",
365
+
"hash": "sha256-W/9WhAG5t/hWPZxIL5+ILMsPKO/DjprHRymZUmU5YOA="
366
+
},
367
+
{
368
+
"pname": "Microsoft.Extensions.Caching.Memory",
369
+
"version": "9.0.10",
370
+
"hash": "sha256-HIXNiUnBJaYN+QGzpTlHzkvkBwYmcU0QUlIgQDhVG5g="
371
+
},
372
+
{
373
+
"pname": "Microsoft.Extensions.Configuration",
374
+
"version": "9.0.10",
375
+
"hash": "sha256-K16pSHfb71WhGqD7mzjrYaNBihU4tga90c6IOHsgRxw="
376
+
},
377
+
{
378
+
"pname": "Microsoft.Extensions.Configuration.Abstractions",
379
+
"version": "3.0.0",
380
+
"hash": "sha256-GJDvt3qFAif5ToFjHgs8imCaUER7yvYJghnlYXiHrHU="
381
+
},
382
+
{
383
+
"pname": "Microsoft.Extensions.Configuration.Abstractions",
384
+
"version": "6.0.0",
385
+
"hash": "sha256-Evg+Ynj2QUa6Gz+zqF+bUyfGD0HI5A2fHmxZEXbn3HA="
386
+
},
387
+
{
388
+
"pname": "Microsoft.Extensions.Configuration.Abstractions",
389
+
"version": "8.0.0",
390
+
"hash": "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o="
391
+
},
392
+
{
393
+
"pname": "Microsoft.Extensions.Configuration.Abstractions",
394
+
"version": "9.0.0",
395
+
"hash": "sha256-xtG2USC9Qm0f2Nn6jkcklpyEDT3hcEZOxOwTc0ep7uc="
396
+
},
397
+
{
398
+
"pname": "Microsoft.Extensions.Configuration.Abstractions",
399
+
"version": "9.0.10",
400
+
"hash": "sha256-sRv0yS2sbyli7eejtnpmd7UIAz4PwSt5/Po5Irc1j98="
401
+
},
402
+
{
403
+
"pname": "Microsoft.Extensions.Configuration.Binder",
404
+
"version": "6.0.0",
405
+
"hash": "sha256-7NZcKkiXWSuhhVcA/fXHPY/62aGUyMsRdiHm91cWC5Y="
406
+
},
407
+
{
408
+
"pname": "Microsoft.Extensions.Configuration.Binder",
409
+
"version": "9.0.0",
410
+
"hash": "sha256-6ajYWcNOQX2WqftgnoUmVtyvC1kkPOtTCif4AiKEffU="
411
+
},
412
+
{
413
+
"pname": "Microsoft.Extensions.Configuration.Binder",
414
+
"version": "9.0.10",
415
+
"hash": "sha256-4NEBx28byvjjIzo0wQPIUUymk9AzSgPS4fu5IRxkIt4="
416
+
},
417
+
{
418
+
"pname": "Microsoft.Extensions.Configuration.CommandLine",
419
+
"version": "9.0.10",
420
+
"hash": "sha256-lgBXA1ovyeEqH9xmLNxxMB2/OLILt7AW6BXf+yc8wqs="
421
+
},
422
+
{
423
+
"pname": "Microsoft.Extensions.Configuration.EnvironmentVariables",
424
+
"version": "9.0.10",
425
+
"hash": "sha256-D4Myt5rp8jxOvuQ4zwo/1bfNfLDZHrBYx7+UDOnhWgA="
426
+
},
427
+
{
428
+
"pname": "Microsoft.Extensions.Configuration.FileExtensions",
429
+
"version": "9.0.10",
430
+
"hash": "sha256-I8ywPAfg7GPQgOuA5TPXuseurWKk7BmXsnaowF80XEQ="
431
+
},
432
+
{
433
+
"pname": "Microsoft.Extensions.Configuration.Json",
434
+
"version": "9.0.10",
435
+
"hash": "sha256-ykcnGdvnx19q3dpwZ9A09k+6iIGNurVebe4nUaOBtng="
436
+
},
437
+
{
438
+
"pname": "Microsoft.Extensions.Configuration.UserSecrets",
439
+
"version": "9.0.10",
440
+
"hash": "sha256-t4ssmlaX/lVemYekfubS841MStq00+C2h2HY1HyZQvQ="
441
+
},
442
+
{
443
+
"pname": "Microsoft.Extensions.DependencyInjection",
444
+
"version": "9.0.10",
445
+
"hash": "sha256-f3r2msA/oV9gGdFn9OEr5bPAfINR17P+sS6/2/NnCuk="
446
+
},
447
+
{
448
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
449
+
"version": "3.0.0",
450
+
"hash": "sha256-dGTb6sHsjZ86fiLnwbauGf9CQdN7G96lCM4ADjaSSBs="
451
+
},
452
+
{
453
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
454
+
"version": "3.1.9",
455
+
"hash": "sha256-Zkt069WHJ542l+LbeeZxmaddoQiUeYE9bdyh4MN59tA="
456
+
},
457
+
{
458
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
459
+
"version": "6.0.0",
460
+
"hash": "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4="
461
+
},
462
+
{
463
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
464
+
"version": "8.0.2",
465
+
"hash": "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY="
466
+
},
467
+
{
468
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
469
+
"version": "9.0.0",
470
+
"hash": "sha256-CncVwkKZ5CsIG2O0+OM9qXuYXh3p6UGyueTHSLDVL+c="
471
+
},
472
+
{
473
+
"pname": "Microsoft.Extensions.DependencyInjection.Abstractions",
474
+
"version": "9.0.10",
475
+
"hash": "sha256-5rwFXG+Wjbf+TkXeWrkGVKV4wfvOryTPadEkEyPyKj4="
476
+
},
477
+
{
478
+
"pname": "Microsoft.Extensions.DependencyModel",
479
+
"version": "3.1.6",
480
+
"hash": "sha256-TKEE5GJmn1wLKuiF6Wd+Q7jpIlq9gSvlWvTVopCyoo4="
481
+
},
482
+
{
483
+
"pname": "Microsoft.Extensions.DependencyModel",
484
+
"version": "9.0.0",
485
+
"hash": "sha256-xirwlMWM0hBqgTneQOGkZ8l45mHT08XuSSRIbprgq94="
486
+
},
487
+
{
488
+
"pname": "Microsoft.Extensions.DependencyModel",
489
+
"version": "9.0.10",
490
+
"hash": "sha256-isJHVIKcWkwi+CqwNBVlz2ISKzZj+TilVpmVNOonNWo="
491
+
},
492
+
{
493
+
"pname": "Microsoft.Extensions.Diagnostics",
494
+
"version": "9.0.10",
495
+
"hash": "sha256-QOjI52VFJne2OpvSPeoep/AcPXvwtr9AtvU0xdCIWog="
496
+
},
497
+
{
498
+
"pname": "Microsoft.Extensions.Diagnostics.Abstractions",
499
+
"version": "9.0.0",
500
+
"hash": "sha256-wG1LcET+MPRjUdz3HIOTHVEnbG/INFJUqzPErCM79eY="
501
+
},
502
+
{
503
+
"pname": "Microsoft.Extensions.Diagnostics.Abstractions",
504
+
"version": "9.0.10",
505
+
"hash": "sha256-FXJrBpG4UieCn9MLcNX25WbPycfZWdPg38/ZLckmAI0="
506
+
},
507
+
{
508
+
"pname": "Microsoft.Extensions.FileProviders.Abstractions",
509
+
"version": "3.0.0",
510
+
"hash": "sha256-QiLBIsAUcHkWk0Io6YEoPz3eQu8k50J2GzLFmiwYtJg="
511
+
},
512
+
{
513
+
"pname": "Microsoft.Extensions.FileProviders.Abstractions",
514
+
"version": "8.0.0",
515
+
"hash": "sha256-uQSXmt47X2HGoVniavjLICbPtD2ReQOYQMgy3l0xuMU="
516
+
},
517
+
{
518
+
"pname": "Microsoft.Extensions.FileProviders.Abstractions",
519
+
"version": "9.0.0",
520
+
"hash": "sha256-mVfLjZ8VrnOQR/uQjv74P2uEG+rgW72jfiGdSZhIfDc="
521
+
},
522
+
{
523
+
"pname": "Microsoft.Extensions.FileProviders.Abstractions",
524
+
"version": "9.0.10",
525
+
"hash": "sha256-NJUg0fFe+djIUkdYhJDCG5A1JU9hhQ5GXGsz+gBEaFo="
526
+
},
527
+
{
528
+
"pname": "Microsoft.Extensions.FileProviders.Physical",
529
+
"version": "9.0.10",
530
+
"hash": "sha256-fqh0OzyoSouNpJkVp/stjqD2NInnBKX9n6JPx+HD5Q0="
531
+
},
532
+
{
533
+
"pname": "Microsoft.Extensions.FileSystemGlobbing",
534
+
"version": "9.0.10",
535
+
"hash": "sha256-m3gjvbPKl36XlrOzCjNHEhWjQcG8agZ5REc/EIOExmQ="
536
+
},
537
+
{
538
+
"pname": "Microsoft.Extensions.Hosting",
539
+
"version": "9.0.10",
540
+
"hash": "sha256-SImJyuK5D7uR0AjWFz6JwqvPZ5VVHPVK79T7vqTUs0g="
541
+
},
542
+
{
543
+
"pname": "Microsoft.Extensions.Hosting.Abstractions",
544
+
"version": "3.0.0",
545
+
"hash": "sha256-iUMCRR9uHSoub48MboewTxokP5QwrC47X5t+C+JUMo4="
546
+
},
547
+
{
548
+
"pname": "Microsoft.Extensions.Hosting.Abstractions",
549
+
"version": "8.0.1",
550
+
"hash": "sha256-/bIVL9uvBQhV/KQmjA1ZjR74sMfaAlBb15sVXsGDEVA="
551
+
},
552
+
{
553
+
"pname": "Microsoft.Extensions.Hosting.Abstractions",
554
+
"version": "9.0.0",
555
+
"hash": "sha256-NhEDqZGnwCDFyK/NKn1dwLQExYE82j1YVFcrhXVczqY="
556
+
},
557
+
{
558
+
"pname": "Microsoft.Extensions.Hosting.Abstractions",
559
+
"version": "9.0.10",
560
+
"hash": "sha256-CrysJ8NO0kx9smoGIk0Oz05RnISTUcPVjTLpRKeVBgQ="
561
+
},
562
+
{
563
+
"pname": "Microsoft.Extensions.Identity.Core",
564
+
"version": "9.0.10",
565
+
"hash": "sha256-IB+CQR+mFoHWLfZLIa06NIKd+YSc81M+NuJsDIUM+QE="
566
+
},
567
+
{
568
+
"pname": "Microsoft.Extensions.Identity.Stores",
569
+
"version": "9.0.10",
570
+
"hash": "sha256-H1ZtfawaS48a3SEf8WcRPM8iN8m/E2B0azOAv5mjWlk="
571
+
},
572
+
{
573
+
"pname": "Microsoft.Extensions.Logging",
574
+
"version": "6.0.0",
575
+
"hash": "sha256-8WsZKRGfXW5MsXkMmNVf6slrkw+cR005czkOP2KUqTk="
576
+
},
577
+
{
578
+
"pname": "Microsoft.Extensions.Logging",
579
+
"version": "9.0.0",
580
+
"hash": "sha256-kR16c+N8nQrWeYLajqnXPg7RiXjZMSFLnKLEs4VfjcM="
581
+
},
582
+
{
583
+
"pname": "Microsoft.Extensions.Logging",
584
+
"version": "9.0.10",
585
+
"hash": "sha256-/Et36NBhpMoxQzI+p/moW7knwYDfjI7Ma7DF7KIYn+Q="
586
+
},
587
+
{
588
+
"pname": "Microsoft.Extensions.Logging.Abstractions",
589
+
"version": "3.0.0",
590
+
"hash": "sha256-p70uTENWQc0J7ibLHlRHWk3RYZg0DMP3g2m4kAUaoxA="
591
+
},
592
+
{
593
+
"pname": "Microsoft.Extensions.Logging.Abstractions",
594
+
"version": "8.0.0",
595
+
"hash": "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4="
596
+
},
597
+
{
598
+
"pname": "Microsoft.Extensions.Logging.Abstractions",
599
+
"version": "8.0.2",
600
+
"hash": "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc="
601
+
},
602
+
{
603
+
"pname": "Microsoft.Extensions.Logging.Abstractions",
604
+
"version": "9.0.0",
605
+
"hash": "sha256-iBTs9twjWXFeERt4CErkIIcoJZU1jrd1RWCI8V5j7KU="
606
+
},
607
+
{
608
+
"pname": "Microsoft.Extensions.Logging.Abstractions",
609
+
"version": "9.0.10",
610
+
"hash": "sha256-PtYXXHi+mbdQMh2QtA57NbWlt+JEpXiey36zLzbKTmo="
611
+
},
612
+
{
613
+
"pname": "Microsoft.Extensions.Logging.Configuration",
614
+
"version": "9.0.10",
615
+
"hash": "sha256-z2lcPYfDld5XiqyLYRLBHe29rbO9j135W2U1HyoRXJI="
616
+
},
617
+
{
618
+
"pname": "Microsoft.Extensions.Logging.Console",
619
+
"version": "9.0.10",
620
+
"hash": "sha256-qM1mcbTK4YmzcWNC0U5f0cunB2CFafTsNzldH5g9Q7E="
621
+
},
622
+
{
623
+
"pname": "Microsoft.Extensions.Logging.Debug",
624
+
"version": "9.0.10",
625
+
"hash": "sha256-x3B8uLpMuIUru3LxEg1ZMYkE5QkcfFe9fMCSUO1kakM="
626
+
},
627
+
{
628
+
"pname": "Microsoft.Extensions.Logging.EventLog",
629
+
"version": "9.0.10",
630
+
"hash": "sha256-TzOq62cH8KolfIvXnWapvPdmCdDxiKF7tg5ICE6iwEk="
631
+
},
632
+
{
633
+
"pname": "Microsoft.Extensions.Logging.EventSource",
634
+
"version": "9.0.10",
635
+
"hash": "sha256-GGxnzocUi1se0kkysvkZ5QpN3p/N1VbrLkpeVPS18Ks="
636
+
},
637
+
{
638
+
"pname": "Microsoft.Extensions.ObjectPool",
639
+
"version": "8.0.11",
640
+
"hash": "sha256-xutYzUA86hOg0NfLcs/NPylKvNcNohucY1LpSEkkaps="
641
+
},
642
+
{
643
+
"pname": "Microsoft.Extensions.Options",
644
+
"version": "6.0.0",
645
+
"hash": "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE="
646
+
},
647
+
{
648
+
"pname": "Microsoft.Extensions.Options",
649
+
"version": "8.0.2",
650
+
"hash": "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys="
651
+
},
652
+
{
653
+
"pname": "Microsoft.Extensions.Options",
654
+
"version": "9.0.0",
655
+
"hash": "sha256-DT5euAQY/ItB5LPI8WIp6Dnd0lSvBRP35vFkOXC68ck="
656
+
},
657
+
{
658
+
"pname": "Microsoft.Extensions.Options",
659
+
"version": "9.0.10",
660
+
"hash": "sha256-QTNhi83xhjJuIQ/3QffzQs/KY7avNyBMvnkuuSr3pBo="
661
+
},
662
+
{
663
+
"pname": "Microsoft.Extensions.Options.ConfigurationExtensions",
664
+
"version": "6.0.0",
665
+
"hash": "sha256-au0Y13cGk/dQFKuvSA5NnP/++bErTk0oOTlgmHdI2Mw="
666
+
},
667
+
{
668
+
"pname": "Microsoft.Extensions.Options.ConfigurationExtensions",
669
+
"version": "9.0.10",
670
+
"hash": "sha256-4YxwQH66IhJiJP53/Fy/lGBIEkVo4k+o/5QxzFQLhfQ="
671
+
},
672
+
{
673
+
"pname": "Microsoft.Extensions.Primitives",
674
+
"version": "6.0.0",
675
+
"hash": "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4="
676
+
},
677
+
{
678
+
"pname": "Microsoft.Extensions.Primitives",
679
+
"version": "8.0.0",
680
+
"hash": "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo="
681
+
},
682
+
{
683
+
"pname": "Microsoft.Extensions.Primitives",
684
+
"version": "9.0.0",
685
+
"hash": "sha256-ZNLusK1CRuq5BZYZMDqaz04PIKScE2Z7sS2tehU7EJs="
686
+
},
687
+
{
688
+
"pname": "Microsoft.Extensions.Primitives",
689
+
"version": "9.0.10",
690
+
"hash": "sha256-It7NQ+Ap/hrqFX3LXDVJqVz1Xl3j8QIapYDcG2MQ/7w="
691
+
},
692
+
{
693
+
"pname": "Microsoft.IdentityModel.Abstractions",
694
+
"version": "8.13.0",
695
+
"hash": "sha256-B5PshNfnDfB36QjEOf0S3FQaC+9K7MR+y5KUiQDHfhg="
696
+
},
697
+
{
698
+
"pname": "Microsoft.IdentityModel.JsonWebTokens",
699
+
"version": "8.13.0",
700
+
"hash": "sha256-i9CvrXUvYvtmuAQNHU9IvjItFh6x2/O8CAuEjeOOYyg="
701
+
},
702
+
{
703
+
"pname": "Microsoft.IdentityModel.Logging",
704
+
"version": "8.13.0",
705
+
"hash": "sha256-wg6jCW8tiXfwrKs/Hxo0M0Cyi2EPRlIa6+vfnVxsQ+M="
706
+
},
707
+
{
708
+
"pname": "Microsoft.IdentityModel.Protocols",
709
+
"version": "8.0.1",
710
+
"hash": "sha256-v3DIpG6yfIToZBpHOjtQHRo2BhXGDoE70EVs6kBtrRg="
711
+
},
712
+
{
713
+
"pname": "Microsoft.IdentityModel.Protocols.OpenIdConnect",
714
+
"version": "8.0.1",
715
+
"hash": "sha256-ZHKaZxqESk+OU1SFTFGxvZ71zbdgWqv1L6ET9+fdXX0="
716
+
},
717
+
{
718
+
"pname": "Microsoft.IdentityModel.Tokens",
719
+
"version": "8.0.1",
720
+
"hash": "sha256-beVbbVQy874HlXkTKarPTT5/r7XR1NGHA/50ywWp7YA="
721
+
},
722
+
{
723
+
"pname": "Microsoft.IdentityModel.Tokens",
724
+
"version": "8.13.0",
725
+
"hash": "sha256-M1NZQyQt8q10MLai4BooKtzJebRVwHeQuq/UQiJl28c="
726
+
},
727
+
{
728
+
"pname": "Microsoft.IO.RecyclableMemoryStream",
729
+
"version": "3.0.1",
730
+
"hash": "sha256-unFg/5EcU/XKJbob4GtQC43Ydgi5VjeBGs7hfhj4EYo="
731
+
},
732
+
{
733
+
"pname": "Microsoft.Net.Http.Headers",
734
+
"version": "2.3.0",
735
+
"hash": "sha256-XY3OyhKTzUVbmMnegp0IxApg8cw97RD9eXC2XenrOqE="
736
+
},
737
+
{
738
+
"pname": "Microsoft.NETCore.Platforms",
739
+
"version": "1.1.0",
740
+
"hash": "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="
741
+
},
742
+
{
743
+
"pname": "Microsoft.NETCore.Targets",
744
+
"version": "1.1.0",
745
+
"hash": "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="
746
+
},
747
+
{
748
+
"pname": "Microsoft.OpenApi",
749
+
"version": "1.6.23",
750
+
"hash": "sha256-YD2oxM/tlNpK5xUeHF85xdqcpBzHioUSyRjpN2A7KcY="
751
+
},
752
+
{
753
+
"pname": "Microsoft.Win32.Primitives",
754
+
"version": "4.3.0",
755
+
"hash": "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg="
756
+
},
757
+
{
758
+
"pname": "Microsoft.Win32.SystemEvents",
759
+
"version": "9.0.7",
760
+
"hash": "sha256-7o59Y4Wy9EsTlcNVCNuweR/7Y7QlbB6MwK/aHGax3F4="
761
+
},
762
+
{
763
+
"pname": "MimeKit",
764
+
"version": "4.13.0",
765
+
"hash": "sha256-mPFMFcK+ks4aoA02JfC6JUhUyc1LTVp5siW9t3wUgNo="
766
+
},
767
+
{
768
+
"pname": "MimeTypeMapOfficial",
769
+
"version": "1.0.17",
770
+
"hash": "sha256-HuQRDUDjBlAKzbnCWvxkXp7tf2bCdd/evox8964grdA="
771
+
},
772
+
{
773
+
"pname": "Mono.TextTemplating",
774
+
"version": "3.0.0",
775
+
"hash": "sha256-VlgGDvgNZb7MeBbIZ4DE2Nn/j2aD9k6XqNHnASUSDr0="
776
+
},
777
+
{
778
+
"pname": "Nager.ArticleNumber",
779
+
"version": "1.0.7",
780
+
"hash": "sha256-Th3BIABiOo0vsgqznr6C6WhVdGDFalso/rAfUYDI0NE="
781
+
},
782
+
{
783
+
"pname": "NETStandard.Library",
784
+
"version": "1.6.1",
785
+
"hash": "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw="
786
+
},
787
+
{
788
+
"pname": "NetVips",
789
+
"version": "3.1.0",
790
+
"hash": "sha256-ZxbN+5JCLjyH23/2NPX/U0+5kbG20knpzouaZjpcrnA="
791
+
},
792
+
{
793
+
"pname": "NetVips.Native",
794
+
"version": "8.17.1",
795
+
"hash": "sha256-3Bt+CkZZqwgujWBlD9frEEk6veRW9//QFqL974aQk0Y="
796
+
},
797
+
{
798
+
"pname": "NetVips.Native.linux-arm",
799
+
"version": "8.17.1",
800
+
"hash": "sha256-ImOgBzek3104u1yluZKUCXJ7XBFiYx0pU+pCSoCLZN4="
801
+
},
802
+
{
803
+
"pname": "NetVips.Native.linux-arm64",
804
+
"version": "8.17.1",
805
+
"hash": "sha256-epMLp8Ig2EBVYP7CrE4/Itf3wcqxwJovObD3g7laFc4="
806
+
},
807
+
{
808
+
"pname": "NetVips.Native.linux-musl-arm64",
809
+
"version": "8.17.1",
810
+
"hash": "sha256-suweTrKlrrFGm4vAI5/88rAjY0xh1xloZ6HmDrZkCYk="
811
+
},
812
+
{
813
+
"pname": "NetVips.Native.linux-musl-x64",
814
+
"version": "8.17.1",
815
+
"hash": "sha256-tO0PZMeLXnzn1crTSVni6dhLkIoVd6Aw9tTBbePrFSo="
816
+
},
817
+
{
818
+
"pname": "NetVips.Native.linux-x64",
819
+
"version": "8.17.1",
820
+
"hash": "sha256-BvD/a88FCd9Q09qVJJ2PNcW7OxKsGjLcqzscawVB9co="
821
+
},
822
+
{
823
+
"pname": "NetVips.Native.osx-arm64",
824
+
"version": "8.17.1",
825
+
"hash": "sha256-IOs4owMMZ9pmLNoU273Fb78SQauMWaYltc0NIf/uUpQ="
826
+
},
827
+
{
828
+
"pname": "NetVips.Native.osx-x64",
829
+
"version": "8.17.1",
830
+
"hash": "sha256-Gx0L959G5pKAwtjll6phwoIHELqQOWrItPleWuJz8f8="
831
+
},
832
+
{
833
+
"pname": "NetVips.Native.win-arm64",
834
+
"version": "8.17.1",
835
+
"hash": "sha256-8dgBepaQf7l/wNgYO+NPCYOsjnPNwUSgvRn+FUNMZtc="
836
+
},
837
+
{
838
+
"pname": "NetVips.Native.win-x64",
839
+
"version": "8.17.1",
840
+
"hash": "sha256-ia+ar6vMv+1HhJq6ppQAeuMbluK1IX8qhcO0z5HDv8o="
841
+
},
842
+
{
843
+
"pname": "NetVips.Native.win-x86",
844
+
"version": "8.17.1",
845
+
"hash": "sha256-PHLRQK2I3cmimTdmDNMq6SDBnpZwin8claHp56HrAWc="
846
+
},
847
+
{
848
+
"pname": "Newtonsoft.Json",
849
+
"version": "11.0.1",
850
+
"hash": "sha256-lbR7rpS/EXgJ8TqQspuIIqAsiorrZb1oOK4HFw+QyPw="
851
+
},
852
+
{
853
+
"pname": "Newtonsoft.Json",
854
+
"version": "11.0.2",
855
+
"hash": "sha256-YhlAbGfwoxQzxb3Hef4iyV9eGdPQJJNd2GgSR0jsBJ0="
856
+
},
857
+
{
858
+
"pname": "Polly",
859
+
"version": "8.6.2",
860
+
"hash": "sha256-JWPe3Une30ljf2z4aeshNSjz2CfIQZWw3IHiPvFgy6E="
861
+
},
862
+
{
863
+
"pname": "Polly.Core",
864
+
"version": "8.6.2",
865
+
"hash": "sha256-jX1i7tkQwaY74qgVarx6vLeLIg7zonQwisFvm6nWrHs="
866
+
},
867
+
{
868
+
"pname": "runtime.any.System.Collections",
869
+
"version": "4.3.0",
870
+
"hash": "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="
871
+
},
872
+
{
873
+
"pname": "runtime.any.System.Diagnostics.Tools",
874
+
"version": "4.3.0",
875
+
"hash": "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="
876
+
},
877
+
{
878
+
"pname": "runtime.any.System.Diagnostics.Tracing",
879
+
"version": "4.3.0",
880
+
"hash": "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="
881
+
},
882
+
{
883
+
"pname": "runtime.any.System.Globalization",
884
+
"version": "4.3.0",
885
+
"hash": "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="
886
+
},
887
+
{
888
+
"pname": "runtime.any.System.Globalization.Calendars",
889
+
"version": "4.3.0",
890
+
"hash": "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4="
891
+
},
892
+
{
893
+
"pname": "runtime.any.System.IO",
894
+
"version": "4.3.0",
895
+
"hash": "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="
896
+
},
897
+
{
898
+
"pname": "runtime.any.System.Reflection",
899
+
"version": "4.3.0",
900
+
"hash": "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="
901
+
},
902
+
{
903
+
"pname": "runtime.any.System.Reflection.Extensions",
904
+
"version": "4.3.0",
905
+
"hash": "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="
906
+
},
907
+
{
908
+
"pname": "runtime.any.System.Reflection.Primitives",
909
+
"version": "4.3.0",
910
+
"hash": "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="
911
+
},
912
+
{
913
+
"pname": "runtime.any.System.Resources.ResourceManager",
914
+
"version": "4.3.0",
915
+
"hash": "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="
916
+
},
917
+
{
918
+
"pname": "runtime.any.System.Runtime",
919
+
"version": "4.3.0",
920
+
"hash": "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="
921
+
},
922
+
{
923
+
"pname": "runtime.any.System.Runtime.Handles",
924
+
"version": "4.3.0",
925
+
"hash": "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="
926
+
},
927
+
{
928
+
"pname": "runtime.any.System.Runtime.InteropServices",
929
+
"version": "4.3.0",
930
+
"hash": "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="
931
+
},
932
+
{
933
+
"pname": "runtime.any.System.Text.Encoding",
934
+
"version": "4.3.0",
935
+
"hash": "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="
936
+
},
937
+
{
938
+
"pname": "runtime.any.System.Text.Encoding.Extensions",
939
+
"version": "4.3.0",
940
+
"hash": "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="
941
+
},
942
+
{
943
+
"pname": "runtime.any.System.Threading.Tasks",
944
+
"version": "4.3.0",
945
+
"hash": "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="
946
+
},
947
+
{
948
+
"pname": "runtime.any.System.Threading.Timer",
949
+
"version": "4.3.0",
950
+
"hash": "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs="
951
+
},
952
+
{
953
+
"pname": "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl",
954
+
"version": "4.3.0",
955
+
"hash": "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="
956
+
},
957
+
{
958
+
"pname": "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl",
959
+
"version": "4.3.0",
960
+
"hash": "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="
961
+
},
962
+
{
963
+
"pname": "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl",
964
+
"version": "4.3.0",
965
+
"hash": "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="
966
+
},
967
+
{
968
+
"pname": "runtime.native.System",
969
+
"version": "4.3.0",
970
+
"hash": "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="
971
+
},
972
+
{
973
+
"pname": "runtime.native.System.IO.Compression",
974
+
"version": "4.3.0",
975
+
"hash": "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8="
976
+
},
977
+
{
978
+
"pname": "runtime.native.System.Net.Http",
979
+
"version": "4.3.0",
980
+
"hash": "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="
981
+
},
982
+
{
983
+
"pname": "runtime.native.System.Security.Cryptography.Apple",
984
+
"version": "4.3.0",
985
+
"hash": "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="
986
+
},
987
+
{
988
+
"pname": "runtime.native.System.Security.Cryptography.OpenSsl",
989
+
"version": "4.3.0",
990
+
"hash": "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="
991
+
},
992
+
{
993
+
"pname": "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl",
994
+
"version": "4.3.0",
995
+
"hash": "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="
996
+
},
997
+
{
998
+
"pname": "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl",
999
+
"version": "4.3.0",
1000
+
"hash": "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="
1001
+
},
1002
+
{
1003
+
"pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple",
1004
+
"version": "4.3.0",
1005
+
"hash": "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="
1006
+
},
1007
+
{
1008
+
"pname": "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
1009
+
"version": "4.3.0",
1010
+
"hash": "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="
1011
+
},
1012
+
{
1013
+
"pname": "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl",
1014
+
"version": "4.3.0",
1015
+
"hash": "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="
1016
+
},
1017
+
{
1018
+
"pname": "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
1019
+
"version": "4.3.0",
1020
+
"hash": "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="
1021
+
},
1022
+
{
1023
+
"pname": "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl",
1024
+
"version": "4.3.0",
1025
+
"hash": "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="
1026
+
},
1027
+
{
1028
+
"pname": "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl",
1029
+
"version": "4.3.0",
1030
+
"hash": "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="
1031
+
},
1032
+
{
1033
+
"pname": "runtime.unix.Microsoft.Win32.Primitives",
1034
+
"version": "4.3.0",
1035
+
"hash": "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg="
1036
+
},
1037
+
{
1038
+
"pname": "runtime.unix.System.Console",
1039
+
"version": "4.3.0",
1040
+
"hash": "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190="
1041
+
},
1042
+
{
1043
+
"pname": "runtime.unix.System.Diagnostics.Debug",
1044
+
"version": "4.3.0",
1045
+
"hash": "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="
1046
+
},
1047
+
{
1048
+
"pname": "runtime.unix.System.IO.FileSystem",
1049
+
"version": "4.3.0",
1050
+
"hash": "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="
1051
+
},
1052
+
{
1053
+
"pname": "runtime.unix.System.Net.Primitives",
1054
+
"version": "4.3.0",
1055
+
"hash": "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0="
1056
+
},
1057
+
{
1058
+
"pname": "runtime.unix.System.Net.Sockets",
1059
+
"version": "4.3.0",
1060
+
"hash": "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4="
1061
+
},
1062
+
{
1063
+
"pname": "runtime.unix.System.Private.Uri",
1064
+
"version": "4.3.0",
1065
+
"hash": "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="
1066
+
},
1067
+
{
1068
+
"pname": "runtime.unix.System.Runtime.Extensions",
1069
+
"version": "4.3.0",
1070
+
"hash": "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="
1071
+
},
1072
+
{
1073
+
"pname": "Scrutor",
1074
+
"version": "3.3.0",
1075
+
"hash": "sha256-cYd6xuCn8cniuHWhiWMZRYZrYUjOvAz2wlEvOM5drmE="
1076
+
},
1077
+
{
1078
+
"pname": "Serilog",
1079
+
"version": "4.3.0",
1080
+
"hash": "sha256-jyIy4BjsyFXge3aO4GRFAdnX4/rz1MHfBkBDIpCDsTw="
1081
+
},
1082
+
{
1083
+
"pname": "Serilog.AspNetCore",
1084
+
"version": "9.0.0",
1085
+
"hash": "sha256-h58CFtXBRvwhTCrhQPHQMKbp98YiK02o+cOyOmktVpQ="
1086
+
},
1087
+
{
1088
+
"pname": "Serilog.Enrichers.Thread",
1089
+
"version": "4.0.0",
1090
+
"hash": "sha256-lo+3ohNHKe/hTq9vGbk29p/OWcNlcyJToGL6EpCJQm8="
1091
+
},
1092
+
{
1093
+
"pname": "Serilog.Extensions.Hosting",
1094
+
"version": "9.0.0",
1095
+
"hash": "sha256-bidr2foe7Dp4BJOlkc7ko0q6vt9ITG3IZ8b2BKRa0pw="
1096
+
},
1097
+
{
1098
+
"pname": "Serilog.Extensions.Logging",
1099
+
"version": "3.0.1",
1100
+
"hash": "sha256-KtHMMnepmEpOlHrIGlUkK6Vq1L0iBBnFGavbUtvxOBk="
1101
+
},
1102
+
{
1103
+
"pname": "Serilog.Extensions.Logging",
1104
+
"version": "9.0.0",
1105
+
"hash": "sha256-aGkz1V4HVl0rWC1BkcnLhG1EC7WLBoT3tdLdUUTFXaw="
1106
+
},
1107
+
{
1108
+
"pname": "Serilog.Formatting.Compact",
1109
+
"version": "3.0.0",
1110
+
"hash": "sha256-nejEYqJEMG9P2iFZvbsCUPr5LZRtxbdUTLCI9N71jHY="
1111
+
},
1112
+
{
1113
+
"pname": "Serilog.Settings.Configuration",
1114
+
"version": "9.0.0",
1115
+
"hash": "sha256-Q/q5UiSrcxoy5a/orod20E2RfiRtHDhxjjGMe1dW35I="
1116
+
},
1117
+
{
1118
+
"pname": "Serilog.Sinks.AspNetCore.SignalR",
1119
+
"version": "0.4.0",
1120
+
"hash": "sha256-KkyrLNMsoBGMJN7C8NNGhGVxFDYzfvxlX66i3NLYkmo="
1121
+
},
1122
+
{
1123
+
"pname": "Serilog.Sinks.Console",
1124
+
"version": "6.0.0",
1125
+
"hash": "sha256-QH8ykDkLssJ99Fgl+ZBFBr+RQRl0wRTkeccQuuGLyro="
1126
+
},
1127
+
{
1128
+
"pname": "Serilog.Sinks.Debug",
1129
+
"version": "3.0.0",
1130
+
"hash": "sha256-7/LmoRF1rUDFhJ47bTRQQFRgSHnZDO8484r3sCGqYvE="
1131
+
},
1132
+
{
1133
+
"pname": "Serilog.Sinks.File",
1134
+
"version": "7.0.0",
1135
+
"hash": "sha256-LxZYUoUPkCjIIVarJilnXnqQiMrFNJtoRilmzTNtUjo="
1136
+
},
1137
+
{
1138
+
"pname": "Serilog.Sinks.SignalR.Core",
1139
+
"version": "0.1.2",
1140
+
"hash": "sha256-7j9SK++4U7Q6f6ofPWsaH9xQii/jBK864u/kHYwxyJk="
1141
+
},
1142
+
{
1143
+
"pname": "SharpCompress",
1144
+
"version": "0.40.0",
1145
+
"hash": "sha256-pxz5ef//xOUClwuyflO0eLAfUItFcwfq74Cf0Hj5c1E="
1146
+
},
1147
+
{
1148
+
"pname": "SixLabors.ImageSharp",
1149
+
"version": "3.1.11",
1150
+
"hash": "sha256-MlRF+3SGfahbsB1pZGKMOrsfUCx//hCo7ECrXr03DpA="
1151
+
},
1152
+
{
1153
+
"pname": "SonarAnalyzer.CSharp",
1154
+
"version": "10.15.0.120848",
1155
+
"hash": "sha256-zmZrHhqRbJq3DcA7Plo6N56gjz7hi7DXwk1e/NSGQwU="
1156
+
},
1157
+
{
1158
+
"pname": "sqlite-net-pcl",
1159
+
"version": "1.8.116",
1160
+
"hash": "sha256-XlD0ycLkpMeFkZ9NCktC2ldYzD2NyJarSv5h6e4gekA="
1161
+
},
1162
+
{
1163
+
"pname": "SQLitePCLRaw.bundle_e_sqlite3",
1164
+
"version": "2.1.10",
1165
+
"hash": "sha256-kZIWjH/TVTXRIsHPZSl7zoC4KAMBMWmgFYGLrQ15Occ="
1166
+
},
1167
+
{
1168
+
"pname": "SQLitePCLRaw.bundle_green",
1169
+
"version": "2.0.4",
1170
+
"hash": "sha256-QjDI47nPUXx75rMABeSYefB6gw6xgrgTjYY6Uq/1J4U="
1171
+
},
1172
+
{
1173
+
"pname": "SQLitePCLRaw.core",
1174
+
"version": "2.0.4",
1175
+
"hash": "sha256-IUfP6hlLayClMzG3V0cEU2woJrlCqvZ/J6LBQB3fZVE="
1176
+
},
1177
+
{
1178
+
"pname": "SQLitePCLRaw.core",
1179
+
"version": "2.1.10",
1180
+
"hash": "sha256-gpZcYwiJVCVwCyJu0R6hYxyMB39VhJDmYh9LxcIVAA8="
1181
+
},
1182
+
{
1183
+
"pname": "SQLitePCLRaw.lib.e_sqlite3",
1184
+
"version": "2.0.4",
1185
+
"hash": "sha256-rPj53a6jdeX4gSr7SsUz7LtbecdoDJQb7bxSigsPvU4="
1186
+
},
1187
+
{
1188
+
"pname": "SQLitePCLRaw.lib.e_sqlite3",
1189
+
"version": "2.1.10",
1190
+
"hash": "sha256-m2v2RQWol+1MNGZsx+G2N++T9BNtQGLLHXUjcwkdCnc="
1191
+
},
1192
+
{
1193
+
"pname": "SQLitePCLRaw.provider.dynamic_cdecl",
1194
+
"version": "2.0.4",
1195
+
"hash": "sha256-0rzyURehoQsyDxW8Yj477TJLNcItBsJVwKBeGidKmSA="
1196
+
},
1197
+
{
1198
+
"pname": "SQLitePCLRaw.provider.e_sqlite3",
1199
+
"version": "2.1.10",
1200
+
"hash": "sha256-MLs3jiETLZ7k/TgkHynZegCWuAbgHaDQKTPB0iNv7Fg="
1201
+
},
1202
+
{
1203
+
"pname": "Swashbuckle.AspNetCore",
1204
+
"version": "9.0.3",
1205
+
"hash": "sha256-ofwJQnDEXT1V3Bzn8jh9qangDQZFeJyvWQt4IxjiPq8="
1206
+
},
1207
+
{
1208
+
"pname": "Swashbuckle.AspNetCore.Filters",
1209
+
"version": "9.0.0",
1210
+
"hash": "sha256-OaXRtWMj6og+FC11y3Fst+rbvnVogDiyiOKbDiSKdXE="
1211
+
},
1212
+
{
1213
+
"pname": "Swashbuckle.AspNetCore.Filters.Abstractions",
1214
+
"version": "9.0.0",
1215
+
"hash": "sha256-iogw8nDb0tRdGgNLNaL3QlbSB1n5pqzpN0r++wgRz80="
1216
+
},
1217
+
{
1218
+
"pname": "Swashbuckle.AspNetCore.Swagger",
1219
+
"version": "9.0.3",
1220
+
"hash": "sha256-JbBGVnPO3dkPYcYOnB0njA5G4KNiDz1Bsg2NUgiv+PI="
1221
+
},
1222
+
{
1223
+
"pname": "Swashbuckle.AspNetCore.SwaggerGen",
1224
+
"version": "8.0.0",
1225
+
"hash": "sha256-K9vOS4Qk+sgwX5H6Yhkjb9LIQzm2ALfrvlaGt+/2cTk="
1226
+
},
1227
+
{
1228
+
"pname": "Swashbuckle.AspNetCore.SwaggerGen",
1229
+
"version": "9.0.3",
1230
+
"hash": "sha256-d1WW1sUCuEopzV/9XQbdwz6Tj10iQdQukTWBB4RVMYY="
1231
+
},
1232
+
{
1233
+
"pname": "Swashbuckle.AspNetCore.SwaggerUI",
1234
+
"version": "9.0.3",
1235
+
"hash": "sha256-G4/F1VDMHBEU0vruOLYuaIhBme3TVKzj8lpLKokH+QE="
1236
+
},
1237
+
{
1238
+
"pname": "System.AppContext",
1239
+
"version": "4.3.0",
1240
+
"hash": "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg="
1241
+
},
1242
+
{
1243
+
"pname": "System.Buffers",
1244
+
"version": "4.3.0",
1245
+
"hash": "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="
1246
+
},
1247
+
{
1248
+
"pname": "System.Buffers",
1249
+
"version": "4.6.0",
1250
+
"hash": "sha256-c2QlgFB16IlfBms5YLsTCFQ/QeKoS6ph1a9mdRkq/Jc="
1251
+
},
1252
+
{
1253
+
"pname": "System.CodeDom",
1254
+
"version": "6.0.0",
1255
+
"hash": "sha256-uPetUFZyHfxjScu5x4agjk9pIhbCkt5rG4Axj25npcQ="
1256
+
},
1257
+
{
1258
+
"pname": "System.Collections",
1259
+
"version": "4.3.0",
1260
+
"hash": "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="
1261
+
},
1262
+
{
1263
+
"pname": "System.Collections.Concurrent",
1264
+
"version": "4.3.0",
1265
+
"hash": "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="
1266
+
},
1267
+
{
1268
+
"pname": "System.Collections.Immutable",
1269
+
"version": "7.0.0",
1270
+
"hash": "sha256-9an2wbxue2qrtugYES9awshQg+KfJqajhnhs45kQIdk="
1271
+
},
1272
+
{
1273
+
"pname": "System.Composition",
1274
+
"version": "7.0.0",
1275
+
"hash": "sha256-YjhxuzuVdAzRBHNQy9y/1ES+ll3QtLcd2o+o8wIyMao="
1276
+
},
1277
+
{
1278
+
"pname": "System.Composition.AttributedModel",
1279
+
"version": "7.0.0",
1280
+
"hash": "sha256-3s52Dyk2J66v/B4LLYFBMyXl0I8DFDshjE+sMjW4ubM="
1281
+
},
1282
+
{
1283
+
"pname": "System.Composition.Convention",
1284
+
"version": "7.0.0",
1285
+
"hash": "sha256-N4MkkBXSQkcFKsEdcSe6zmyFyMmFOHmI2BNo3wWxftk="
1286
+
},
1287
+
{
1288
+
"pname": "System.Composition.Hosting",
1289
+
"version": "7.0.0",
1290
+
"hash": "sha256-7liQGMaVKNZU1iWTIXvqf0SG8zPobRoLsW7q916XC3M="
1291
+
},
1292
+
{
1293
+
"pname": "System.Composition.Runtime",
1294
+
"version": "7.0.0",
1295
+
"hash": "sha256-Oo1BxSGLETmdNcYvnkGdgm7JYAnQmv1jY0gL0j++Pd0="
1296
+
},
1297
+
{
1298
+
"pname": "System.Composition.TypedParts",
1299
+
"version": "7.0.0",
1300
+
"hash": "sha256-6ZzNdk35qQG3ttiAi4OXrihla7LVP+y2fL3bx40/32s="
1301
+
},
1302
+
{
1303
+
"pname": "System.Console",
1304
+
"version": "4.3.0",
1305
+
"hash": "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo="
1306
+
},
1307
+
{
1308
+
"pname": "System.Diagnostics.Debug",
1309
+
"version": "4.3.0",
1310
+
"hash": "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="
1311
+
},
1312
+
{
1313
+
"pname": "System.Diagnostics.DiagnosticSource",
1314
+
"version": "4.3.0",
1315
+
"hash": "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw="
1316
+
},
1317
+
{
1318
+
"pname": "System.Diagnostics.DiagnosticSource",
1319
+
"version": "6.0.0",
1320
+
"hash": "sha256-RY9uWSPdK2fgSwlj1OHBGBVo3ZvGQgBJNzAsS5OGMWc="
1321
+
},
1322
+
{
1323
+
"pname": "System.Diagnostics.EventLog",
1324
+
"version": "9.0.10",
1325
+
"hash": "sha256-Nl5DqIAwczE10eWNlVz1UpAVO668eNdhyWq+Rfw+QI0="
1326
+
},
1327
+
{
1328
+
"pname": "System.Diagnostics.Tools",
1329
+
"version": "4.3.0",
1330
+
"hash": "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y="
1331
+
},
1332
+
{
1333
+
"pname": "System.Diagnostics.Tracing",
1334
+
"version": "4.3.0",
1335
+
"hash": "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="
1336
+
},
1337
+
{
1338
+
"pname": "System.Drawing.Common",
1339
+
"version": "9.0.7",
1340
+
"hash": "sha256-GRiTUzguCr8o3V9whhoKvW16NCA08mdYO1rViJiDvvo="
1341
+
},
1342
+
{
1343
+
"pname": "System.Formats.Asn1",
1344
+
"version": "8.0.1",
1345
+
"hash": "sha256-may/Wg+esmm1N14kQTG4ESMBi+GQKPp0ZrrBo/o6OXM="
1346
+
},
1347
+
{
1348
+
"pname": "System.Globalization",
1349
+
"version": "4.3.0",
1350
+
"hash": "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="
1351
+
},
1352
+
{
1353
+
"pname": "System.Globalization.Calendars",
1354
+
"version": "4.3.0",
1355
+
"hash": "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="
1356
+
},
1357
+
{
1358
+
"pname": "System.Globalization.Extensions",
1359
+
"version": "4.3.0",
1360
+
"hash": "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="
1361
+
},
1362
+
{
1363
+
"pname": "System.IdentityModel.Tokens.Jwt",
1364
+
"version": "8.13.0",
1365
+
"hash": "sha256-2nqEzhLuxq9az4FYh3pJkSesM/HdHIKMtGXQdfhkllE="
1366
+
},
1367
+
{
1368
+
"pname": "System.IO",
1369
+
"version": "4.3.0",
1370
+
"hash": "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="
1371
+
},
1372
+
{
1373
+
"pname": "System.IO.Abstractions",
1374
+
"version": "22.0.15",
1375
+
"hash": "sha256-2deBvDALOzd+BAnhdbnR7ZPjChE71HPv7w61/2tfYOg="
1376
+
},
1377
+
{
1378
+
"pname": "System.IO.Compression",
1379
+
"version": "4.3.0",
1380
+
"hash": "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA="
1381
+
},
1382
+
{
1383
+
"pname": "System.IO.Compression.ZipFile",
1384
+
"version": "4.3.0",
1385
+
"hash": "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs="
1386
+
},
1387
+
{
1388
+
"pname": "System.IO.FileSystem",
1389
+
"version": "4.3.0",
1390
+
"hash": "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="
1391
+
},
1392
+
{
1393
+
"pname": "System.IO.FileSystem.Primitives",
1394
+
"version": "4.3.0",
1395
+
"hash": "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="
1396
+
},
1397
+
{
1398
+
"pname": "System.IO.Pipelines",
1399
+
"version": "7.0.0",
1400
+
"hash": "sha256-W2181khfJUTxLqhuAVRhCa52xZ3+ePGOLIPwEN8WisY="
1401
+
},
1402
+
{
1403
+
"pname": "System.IO.Pipelines",
1404
+
"version": "8.0.0",
1405
+
"hash": "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="
1406
+
},
1407
+
{
1408
+
"pname": "System.Linq",
1409
+
"version": "4.3.0",
1410
+
"hash": "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="
1411
+
},
1412
+
{
1413
+
"pname": "System.Linq.Expressions",
1414
+
"version": "4.3.0",
1415
+
"hash": "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="
1416
+
},
1417
+
{
1418
+
"pname": "System.Memory",
1419
+
"version": "4.5.3",
1420
+
"hash": "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk="
1421
+
},
1422
+
{
1423
+
"pname": "System.Net.Http",
1424
+
"version": "4.3.0",
1425
+
"hash": "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q="
1426
+
},
1427
+
{
1428
+
"pname": "System.Net.NameResolution",
1429
+
"version": "4.3.0",
1430
+
"hash": "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c="
1431
+
},
1432
+
{
1433
+
"pname": "System.Net.Primitives",
1434
+
"version": "4.3.0",
1435
+
"hash": "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="
1436
+
},
1437
+
{
1438
+
"pname": "System.Net.Sockets",
1439
+
"version": "4.3.0",
1440
+
"hash": "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus="
1441
+
},
1442
+
{
1443
+
"pname": "System.Net.WebSockets.WebSocketProtocol",
1444
+
"version": "5.1.0",
1445
+
"hash": "sha256-TCcPu94+/BpZ94sTdBA20RgD+qJvMsaTOqYKN+HxZBc="
1446
+
},
1447
+
{
1448
+
"pname": "System.ObjectModel",
1449
+
"version": "4.3.0",
1450
+
"hash": "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="
1451
+
},
1452
+
{
1453
+
"pname": "System.Private.Uri",
1454
+
"version": "4.3.0",
1455
+
"hash": "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="
1456
+
},
1457
+
{
1458
+
"pname": "System.Reflection",
1459
+
"version": "4.3.0",
1460
+
"hash": "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="
1461
+
},
1462
+
{
1463
+
"pname": "System.Reflection.Emit",
1464
+
"version": "4.3.0",
1465
+
"hash": "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="
1466
+
},
1467
+
{
1468
+
"pname": "System.Reflection.Emit",
1469
+
"version": "4.7.0",
1470
+
"hash": "sha256-Fw/CSRD+wajH1MqfKS3Q/sIrUH7GN4K+F+Dx68UPNIg="
1471
+
},
1472
+
{
1473
+
"pname": "System.Reflection.Emit.ILGeneration",
1474
+
"version": "4.3.0",
1475
+
"hash": "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="
1476
+
},
1477
+
{
1478
+
"pname": "System.Reflection.Emit.Lightweight",
1479
+
"version": "4.3.0",
1480
+
"hash": "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="
1481
+
},
1482
+
{
1483
+
"pname": "System.Reflection.Extensions",
1484
+
"version": "4.3.0",
1485
+
"hash": "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="
1486
+
},
1487
+
{
1488
+
"pname": "System.Reflection.Metadata",
1489
+
"version": "7.0.0",
1490
+
"hash": "sha256-GwAKQhkhPBYTqmRdG9c9taqrKSKDwyUgOEhWLKxWNPI="
1491
+
},
1492
+
{
1493
+
"pname": "System.Reflection.Primitives",
1494
+
"version": "4.3.0",
1495
+
"hash": "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="
1496
+
},
1497
+
{
1498
+
"pname": "System.Reflection.TypeExtensions",
1499
+
"version": "4.3.0",
1500
+
"hash": "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="
1501
+
},
1502
+
{
1503
+
"pname": "System.Resources.ResourceManager",
1504
+
"version": "4.3.0",
1505
+
"hash": "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="
1506
+
},
1507
+
{
1508
+
"pname": "System.Runtime",
1509
+
"version": "4.3.0",
1510
+
"hash": "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="
1511
+
},
1512
+
{
1513
+
"pname": "System.Runtime.CompilerServices.Unsafe",
1514
+
"version": "6.0.0",
1515
+
"hash": "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="
1516
+
},
1517
+
{
1518
+
"pname": "System.Runtime.Extensions",
1519
+
"version": "4.3.0",
1520
+
"hash": "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="
1521
+
},
1522
+
{
1523
+
"pname": "System.Runtime.Handles",
1524
+
"version": "4.3.0",
1525
+
"hash": "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="
1526
+
},
1527
+
{
1528
+
"pname": "System.Runtime.InteropServices",
1529
+
"version": "4.3.0",
1530
+
"hash": "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="
1531
+
},
1532
+
{
1533
+
"pname": "System.Runtime.InteropServices.RuntimeInformation",
1534
+
"version": "4.3.0",
1535
+
"hash": "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA="
1536
+
},
1537
+
{
1538
+
"pname": "System.Runtime.Numerics",
1539
+
"version": "4.3.0",
1540
+
"hash": "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="
1541
+
},
1542
+
{
1543
+
"pname": "System.Security.Claims",
1544
+
"version": "4.3.0",
1545
+
"hash": "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks="
1546
+
},
1547
+
{
1548
+
"pname": "System.Security.Cryptography.Algorithms",
1549
+
"version": "4.3.0",
1550
+
"hash": "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="
1551
+
},
1552
+
{
1553
+
"pname": "System.Security.Cryptography.Cng",
1554
+
"version": "4.3.0",
1555
+
"hash": "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw="
1556
+
},
1557
+
{
1558
+
"pname": "System.Security.Cryptography.Csp",
1559
+
"version": "4.3.0",
1560
+
"hash": "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="
1561
+
},
1562
+
{
1563
+
"pname": "System.Security.Cryptography.Encoding",
1564
+
"version": "4.3.0",
1565
+
"hash": "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="
1566
+
},
1567
+
{
1568
+
"pname": "System.Security.Cryptography.OpenSsl",
1569
+
"version": "4.3.0",
1570
+
"hash": "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="
1571
+
},
1572
+
{
1573
+
"pname": "System.Security.Cryptography.Pkcs",
1574
+
"version": "8.0.1",
1575
+
"hash": "sha256-KMNIkJ3yQ/5O6WIhPjyAIarsvIMhkp26A6aby5KkneU="
1576
+
},
1577
+
{
1578
+
"pname": "System.Security.Cryptography.Primitives",
1579
+
"version": "4.3.0",
1580
+
"hash": "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="
1581
+
},
1582
+
{
1583
+
"pname": "System.Security.Cryptography.X509Certificates",
1584
+
"version": "4.3.0",
1585
+
"hash": "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="
1586
+
},
1587
+
{
1588
+
"pname": "System.Security.Principal",
1589
+
"version": "4.3.0",
1590
+
"hash": "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk="
1591
+
},
1592
+
{
1593
+
"pname": "System.Security.Principal.Windows",
1594
+
"version": "4.3.0",
1595
+
"hash": "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE="
1596
+
},
1597
+
{
1598
+
"pname": "System.Text.Encoding",
1599
+
"version": "4.3.0",
1600
+
"hash": "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="
1601
+
},
1602
+
{
1603
+
"pname": "System.Text.Encoding.Extensions",
1604
+
"version": "4.3.0",
1605
+
"hash": "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="
1606
+
},
1607
+
{
1608
+
"pname": "System.Text.Encodings.Web",
1609
+
"version": "8.0.0",
1610
+
"hash": "sha256-IUQkQkV9po1LC0QsqrilqwNzPvnc+4eVvq+hCvq8fvE="
1611
+
},
1612
+
{
1613
+
"pname": "System.Text.Json",
1614
+
"version": "7.0.3",
1615
+
"hash": "sha256-aSJZ17MjqaZNQkprfxm/09LaCoFtpdWmqU9BTROzWX4="
1616
+
},
1617
+
{
1618
+
"pname": "System.Text.Json",
1619
+
"version": "9.0.10",
1620
+
"hash": "sha256-wqeobpRw3PqOw21q8oGvauj5BkX1pS02Cm78E6c742w="
1621
+
},
1622
+
{
1623
+
"pname": "System.Text.RegularExpressions",
1624
+
"version": "4.3.0",
1625
+
"hash": "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0="
1626
+
},
1627
+
{
1628
+
"pname": "System.Threading",
1629
+
"version": "4.3.0",
1630
+
"hash": "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="
1631
+
},
1632
+
{
1633
+
"pname": "System.Threading.Channels",
1634
+
"version": "7.0.0",
1635
+
"hash": "sha256-Cu0gjQsLIR8Yvh0B4cOPJSYVq10a+3F9pVz/C43CNeM="
1636
+
},
1637
+
{
1638
+
"pname": "System.Threading.Channels",
1639
+
"version": "8.0.0",
1640
+
"hash": "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg="
1641
+
},
1642
+
{
1643
+
"pname": "System.Threading.Tasks",
1644
+
"version": "4.3.0",
1645
+
"hash": "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="
1646
+
},
1647
+
{
1648
+
"pname": "System.Threading.Tasks.Extensions",
1649
+
"version": "4.3.0",
1650
+
"hash": "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc="
1651
+
},
1652
+
{
1653
+
"pname": "System.Threading.ThreadPool",
1654
+
"version": "4.3.0",
1655
+
"hash": "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg="
1656
+
},
1657
+
{
1658
+
"pname": "System.Threading.Timer",
1659
+
"version": "4.3.0",
1660
+
"hash": "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s="
1661
+
},
1662
+
{
1663
+
"pname": "System.Xml.ReaderWriter",
1664
+
"version": "4.3.0",
1665
+
"hash": "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA="
1666
+
},
1667
+
{
1668
+
"pname": "System.Xml.XDocument",
1669
+
"version": "4.3.0",
1670
+
"hash": "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI="
1671
+
},
1672
+
{
1673
+
"pname": "TestableIO.System.IO.Abstractions",
1674
+
"version": "22.0.15",
1675
+
"hash": "sha256-6YwnBfAnsxM0lEPB2LOFQcs7d1r7CyqjDEmvUBTz+X0="
1676
+
},
1677
+
{
1678
+
"pname": "TestableIO.System.IO.Abstractions.Wrappers",
1679
+
"version": "22.0.15",
1680
+
"hash": "sha256-KoGuXGzecpf4rTmEth4/2goVFFR9V2aj+iibfZxpR7U="
1681
+
},
1682
+
{
1683
+
"pname": "Testably.Abstractions.FileSystem.Interface",
1684
+
"version": "9.0.0",
1685
+
"hash": "sha256-6JW+qDtqQT9StP4oTR7uO0NnmVc2xcjSZ6ds2H71wtg="
1686
+
},
1687
+
{
1688
+
"pname": "VersOne.Epub",
1689
+
"version": "3.3.4",
1690
+
"hash": "sha256-BzUtRaxKkaG7tmXbvnWFM9vjf4g5XwhwnMUIdQzGlns="
1691
+
},
1692
+
{
1693
+
"pname": "xunit.assert",
1694
+
"version": "2.9.3",
1695
+
"hash": "sha256-vHYOde8bd10pOmr7iTAYNtPlqHzsJl4x3t1DDuYdDCA="
1696
+
},
1697
+
{
1698
+
"pname": "YamlDotNet",
1699
+
"version": "16.3.0",
1700
+
"hash": "sha256-4Gi8wSQ8Rsi/3+LyegJr//A83nxn2fN8LN1wvSSp39Q="
1701
+
},
1702
+
{
1703
+
"pname": "ZstdSharp.Port",
1704
+
"version": "0.8.5",
1705
+
"hash": "sha256-+UQFeU64md0LlSf9nMXif6hHnfYEKm+WRyYd0Vo2QvI="
1706
+
}
1707
+
]
+3
packetmix/packages/kavita/nuget-deps.json.license
+3
packetmix/packages/kavita/nuget-deps.json.license
+27
packetmix/packages/opensearch/default.nix
+27
packetmix/packages/opensearch/default.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
{ config, ... }:
5
+
{
6
+
config.packages.opensearch = {
7
+
systems = [ "x86_64-linux" ];
8
+
package =
9
+
{
10
+
opensearch,
11
+
jdk11_headless,
12
+
...
13
+
}:
14
+
(opensearch.override {
15
+
jre_headless = jdk11_headless;
16
+
}).overrideAttrs
17
+
{
18
+
version = "1.3.20";
19
+
src = config.inputs.OpenSearch.src;
20
+
21
+
postInstall = ''
22
+
cp bin/opensearch-cli $out/bin/opensearch-cli
23
+
sed -i -e '/9-:-Xlog:gc/d' $out/config/jvm.options
24
+
'';
25
+
};
26
+
};
27
+
}
+2
-2
packetmix/packages/treefmt/default.nix
+2
-2
packetmix/packages/treefmt/default.nix
···
29
29
systems = [ "x86_64-linux" ];
30
30
31
31
package =
32
-
{ stdenv, system }:
32
+
{ stdenv }:
33
33
stdenv.mkDerivation {
34
34
name = "nilla-fmt";
35
35
36
-
src = config.packages.treefmt.result.${system};
36
+
src = config.packages.treefmt.result.${stdenv.hostPlatform.system};
37
37
38
38
dontBuild = true;
39
39
+27
packetmix/packages/vs-launcher/default.nix
+27
packetmix/packages/vs-launcher/default.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
{ config, ... }:
5
+
{
6
+
config.packages.vs-launcher = {
7
+
systems = [ "x86_64-linux" ];
8
+
9
+
package =
10
+
let
11
+
12
+
in
13
+
{ appimageTools, fetchurl }:
14
+
let
15
+
version = config.inputs.vs-launcher.src.version;
16
+
pname = "vs-launcher";
17
+
src = fetchurl {
18
+
url = "https://github.com/XurxoMF/vs-launcher/releases/download/${version}/vs-launcher-${version}.AppImage";
19
+
sha256 = "sha256-WohOevunsop8cSg1E+GuUJpYHRfj7XtJEC0xH16A4Hg=";
20
+
};
21
+
in
22
+
appimageTools.wrapType2 {
23
+
inherit pname version src;
24
+
extraPkgs = pkgs: [ pkgs.dotnet-runtime ];
25
+
};
26
+
};
27
+
}
-63
packetmix/patches/reuse/1191-correct-invocation-for-jujutsu-file-listing.patch
-63
packetmix/patches/reuse/1191-correct-invocation-for-jujutsu-file-listing.patch
···
1
-
From 44d6d1a802e92c4837348329b32f1d0a158b5c30 Mon Sep 17 00:00:00 2001
2
-
From: Jonas Fierlings <fnoegip@gmail.com>
3
-
Date: Mon, 9 Jun 2025 18:28:42 +0200
4
-
Subject: [PATCH] Correct invocation for jujutsu file listing
5
-
6
-
The `jj files` command was deprecated in jujutsu 0.19.0, and removed in
7
-
jujutsu 0.26.0 (released in february of 2025). The fix is to use the new
8
-
`jj file list` command instead.
9
-
---
10
-
src/reuse/vcs.py | 29 ++++++++++++++++++++++++++++-
11
-
1 files changed, 28 insertions(+), 1 deletion(-)
12
-
13
-
diff --git a/src/reuse/vcs.py b/src/reuse/vcs.py
14
-
index 8c1cb5c8e..63b220048 100644
15
-
--- a/src/reuse/vcs.py
16
-
+++ b/src/reuse/vcs.py
17
-
@@ -2,6 +2,7 @@
18
-
# SPDX-FileCopyrightText: 2020 John Mulligan <jmulligan@redhat.com>
19
-
# SPDX-FileCopyrightText: 2023 Markus Haug <korrat@proton.me>
20
-
# SPDX-FileCopyrightText: 2024 Skyler Grey <sky@a.starrysky.fyi>
21
-
+# SPDX-FileCopyrightText: 2025 Jonas Fierlings <fnoegip@gmail.com>
22
-
# SPDX-FileCopyrightText: ยฉ 2020 Liferay, Inc. <https://liferay.com>
23
-
#
24
-
# SPDX-License-Identifier: GPL-3.0-or-later
25
-
@@ -261,11 +262,37 @@ def _find_all_tracked_files(self) -> set[Path]:
26
-
"""
27
-
Return a set of all files tracked in the current jj revision
28
-
"""
29
-
- command = [str(self.EXE), "files"]
30
-
+ version = self._version()
31
-
+ # TODO: Remove the version check once most distributions ship jj 0.19.0
32
-
+ # or higher.
33
-
+ if version is None or version >= (0, 19, 0):
34
-
+ command = [str(self.EXE), "file", "list"]
35
-
+ else:
36
-
+ command = [str(self.EXE), "files"]
37
-
result = execute_command(command, _LOGGER, cwd=self.root)
38
-
all_files = result.stdout.decode("utf-8").split("\n")
39
-
return {Path(file_) for file_ in all_files if file_}
40
-
41
-
+ def _version(self) -> Optional[tuple[int, int, int]]:
42
-
+ """
43
-
+ Returns the (major, minor, patch) version of the jujutsu executable,
44
-
+ or None if the version components cannot be determined.
45
-
+ """
46
-
+ result = execute_command(
47
-
+ [str(self.EXE), "--version"], _LOGGER, cwd=self.root
48
-
+ )
49
-
+ lines = result.stdout.decode("utf-8").split("\n")
50
-
+ # Output has the form `jj major.minor.patch[-hash]\n`.
51
-
+ try:
52
-
+ line = lines[0]
53
-
+ version = line.split(" ")[-1]
54
-
+ without_hash = version.split("-")[0]
55
-
+ components = without_hash.split(".")
56
-
+ return (int(components[0]), int(components[1]), int(components[2]))
57
-
+ except (IndexError, ValueError) as e:
58
-
+ _LOGGER.debug("unable to parse jj version: %s", e)
59
-
+ return None
60
-
+
61
-
def is_ignored(self, path: StrPath) -> bool:
62
-
path = relative_from_root(path, self.root)
63
-
-3
packetmix/patches/reuse/1191-correct-invocation-for-jujutsu-file-listing.patch.license
-3
packetmix/patches/reuse/1191-correct-invocation-for-jujutsu-file-listing.patch.license
+128
packetmix/project.nix
+128
packetmix/project.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
config,
7
+
lib,
8
+
pins,
9
+
...
10
+
}:
11
+
{
12
+
includes = [
13
+
./homes
14
+
./lib
15
+
./modules
16
+
./packages
17
+
./systems
18
+
"${pins.nilla-nixos}/modules/nixos.nix" # We can't use config.inputs here without infinitely-recursing
19
+
];
20
+
21
+
config = {
22
+
packages.allNixOSSystems = {
23
+
systems = [ "x86_64-linux" ];
24
+
25
+
package =
26
+
{ stdenv }:
27
+
stdenv.mkDerivation {
28
+
name = "all-nixos-systems";
29
+
30
+
dontUnpack = true;
31
+
32
+
buildPhase = ''
33
+
mkdir -p $out
34
+
''
35
+
+ (builtins.concatStringsSep "\n" (
36
+
config.lib.attrs.mapToList (
37
+
name: value: ''ln -s "${value.result.config.system.build.toplevel}" "$out/${name}"''
38
+
) config.systems.nixos
39
+
));
40
+
};
41
+
};
42
+
43
+
packages.allHomes = {
44
+
systems = [ "x86_64-linux" ];
45
+
46
+
package =
47
+
{ stdenv }:
48
+
stdenv.mkDerivation {
49
+
name = "all-homes";
50
+
51
+
dontUnpack = true;
52
+
53
+
buildPhase = ''
54
+
mkdir -p $out
55
+
''
56
+
+ (builtins.concatStringsSep "\n" (
57
+
config.lib.attrs.mapToList (
58
+
name: value:
59
+
''ln -s "${value.result.${stdenv.hostPlatform.system}.activationPackage}" "$out/${name}"''
60
+
) (config.lib.attrs.filter (_: value: value.result ? ${stdenv.hostPlatform.system}) config.homes)
61
+
));
62
+
};
63
+
};
64
+
65
+
packages.helix = {
66
+
systems = [ "x86_64-linux" ];
67
+
68
+
package =
69
+
{ helix }:
70
+
helix.overrideAttrs (
71
+
{
72
+
patches ? [ ],
73
+
...
74
+
}:
75
+
{
76
+
doCheck = false;
77
+
patches = patches ++ [ ./patches/helix/3958-labels-for-config-menus.patch ];
78
+
}
79
+
);
80
+
};
81
+
82
+
# With a package set defined, we can create a shell.
83
+
shells.default = config.shells.packetmix;
84
+
shells.packetmix = {
85
+
# Declare what systems the shell can be used on.
86
+
systems = [ "x86_64-linux" ];
87
+
88
+
# Define our shell environment.
89
+
shell =
90
+
{
91
+
pkgs,
92
+
stdenv,
93
+
mkShell,
94
+
kdePackages,
95
+
reuse,
96
+
...
97
+
}:
98
+
mkShell {
99
+
QML_IMPORT_PATH =
100
+
lib.fp.pipe
101
+
[
102
+
(map (pkg: "${pkg}/lib/qt-6/qml"))
103
+
(builtins.concatStringsSep ":")
104
+
]
105
+
[
106
+
config.inputs.nixos-unstable.result.${stdenv.hostPlatform.system}.quickshell
107
+
kdePackages.qtdeclarative
108
+
];
109
+
110
+
packages = [
111
+
config.inputs.nilla-cli.result.packages.nilla-cli.result.${stdenv.hostPlatform.system}
112
+
config.inputs.nilla-home.result.packages.nilla-home.result.${stdenv.hostPlatform.system}
113
+
config.inputs.nilla-nixos.result.packages.nilla-nixos.result.${stdenv.hostPlatform.system}
114
+
config.inputs.nixos-unstable.result.${stdenv.hostPlatform.system}.quickshell
115
+
config.inputs.nixpkgs.result.${stdenv.hostPlatform.system}.deadnix
116
+
config.packages.nilla-fmt.result.${stdenv.hostPlatform.system}
117
+
config.packages.treefmt.result.${stdenv.hostPlatform.system}
118
+
(config.inputs.npins.result {
119
+
inherit pkgs;
120
+
inherit (stdenv.hostPlatform) system;
121
+
})
122
+
kdePackages.qtdeclarative
123
+
reuse
124
+
];
125
+
};
126
+
};
127
+
};
128
+
}
+22
packetmix/systems/collabora/tailscale.nix
+22
packetmix/systems/collabora/tailscale.nix
···
1
+
# SPDX-FileCopyrightText: 2025 Collabora Productivity Limited
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, ... }:
6
+
{
7
+
systemd.services.tailscale-collabora = {
8
+
after = [ "NetworkManager-wait-online.service" ];
9
+
wantedBy = [ "multi-user.target" ];
10
+
11
+
serviceConfig.StateDirectory = [ "tailscale/collabora" ];
12
+
13
+
script =
14
+
"${pkgs.tailscale}/bin/tailscaled"
15
+
+ " -tun=userspace-networking"
16
+
+ " -socks5-server=localhost:1055"
17
+
+ " -socket=/var/run/tailscale/tailscaled-collabora.sock"
18
+
+ " -statedir=/var/lib/tailscale/collabora";
19
+
};
20
+
21
+
environment.shellAliases.tailscale-collabora = "${pkgs.tailscale}/bin/tailscale --socket /var/run/tailscale/tailscaled-collabora.sock";
22
+
}
+4
-1
packetmix/systems/common/fonts.nix
+4
-1
packetmix/systems/common/fonts.nix
+1
-2
packetmix/systems/common/inputs.nix
+1
-2
packetmix/systems/common/inputs.nix
+23
-1
packetmix/systems/common/lix.nix
+23
-1
packetmix/systems/common/lix.nix
···
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
4
5
-
{ project, ... }:
5
+
{
6
+
project,
7
+
pkgs,
8
+
system,
9
+
...
10
+
}:
6
11
{
7
12
imports = [
8
13
(import "${project.inputs.lix-module.result}/module.nix" { lix = project.inputs.lix.src; })
···
16
21
options = "--delete-older-than 7d";
17
22
dates = "08:30";
18
23
};
24
+
25
+
nixpkgs.overlays = [
26
+
(final: prev: {
27
+
nix-monitored = project.inputs.nix-monitored.result.packages.${system}.default.override {
28
+
nix = final.lix;
29
+
withNotify = pkgs.stdenv.isLinux;
30
+
};
31
+
nixos-rebuild = prev.nixos-rebuild.override {
32
+
nix = final.nix-monitored;
33
+
};
34
+
nix-direnv = prev.nix-direnv.override {
35
+
nix = final.nix-monitored;
36
+
};
37
+
})
38
+
];
39
+
40
+
nix.package = pkgs.nix-monitored;
19
41
}
+44
packetmix/systems/common/nginx.nix
+44
packetmix/systems/common/nginx.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ config, lib, ... }:
6
+
{
7
+
# By default, nginx will serve a "best-effort" site even if there is no matching vhost
8
+
# We can disable this by making a matching vhost and returning 444...
9
+
# Notice how we don't enable nginx here: that makes this safe to deploy even on places that don't currently run nginx. We're effectively changing the default behavior
10
+
services.nginx.virtualHosts."missinghost.invalid" = {
11
+
default = true;
12
+
13
+
addSSL = true;
14
+
enableACME = true;
15
+
acmeRoot = null;
16
+
17
+
locations."/".return = "444";
18
+
19
+
extraConfig = ''
20
+
ssl_reject_handshake on;
21
+
'';
22
+
};
23
+
24
+
systemd.services."acme-order-renew-missinghost.invalid".enable = false;
25
+
26
+
systemd.services."acme-missinghost.invalid" = {
27
+
wants = lib.mkForce [
28
+
"acme-setup.service"
29
+
];
30
+
before = lib.mkForce [ ];
31
+
restartTriggers = lib.mkForce [ ];
32
+
};
33
+
34
+
security.acme.acceptTerms = true;
35
+
security.acme.certs = lib.mkIf config.services.nginx.enable {
36
+
"missinghost.invalid" = {
37
+
dnsProvider = "invalidns";
38
+
listenHTTP = null;
39
+
s3Bucket = null;
40
+
webroot = null; # We can't use webroot as the setup service validates it...
41
+
email = "invalid@missinghost.invalid";
42
+
}; # Nix requires some values, even if we're actually disabling the acme-missinghost.invalid service... that's problematic if there are no defaults for the system
43
+
};
44
+
}
+25
-6
packetmix/systems/common/packetmix.nix
+25
-6
packetmix/systems/common/packetmix.nix
···
5
5
# packetmix.nix: packetmix support configuration, including our binary cache and auto-updating
6
6
{ config, pkgs, ... }:
7
7
{
8
-
nix.settings.substituters = [
9
-
"https://freshlybakedcake.cachix.org"
10
-
];
11
-
nix.settings.trusted-public-keys = [
12
-
"freshlybakedcake.cachix.org-1:YmhsHdeKjqbaS33PPJXJllTHBupT3hliQrPcllJXkE0="
13
-
];
8
+
nix.settings.substituters =
9
+
(
10
+
if !config.ingredient.nix-serve.enable then
11
+
[
12
+
"https://cache.freshlybakedca.ke"
13
+
]
14
+
else
15
+
[ ]
16
+
)
17
+
++ [
18
+
"https://freshlybakedcake.cachix.org"
19
+
];
20
+
nix.settings.trusted-public-keys =
21
+
(
22
+
if !config.ingredient.nix-serve.enable then
23
+
[
24
+
"cache.freshlybakedca.ke-1:WD7CED6MwAxxOzgHlrHVbcVdYeqSa2mwBwR3vNuCJvg="
25
+
]
26
+
else
27
+
[ ]
28
+
)
29
+
++ [
30
+
"freshlybakedcake.cachix.org-1:YmhsHdeKjqbaS33PPJXJllTHBupT3hliQrPcllJXkE0="
31
+
];
14
32
15
33
system.autoUpgrade = {
16
34
enable = true;
···
26
44
systemd.services.nixos-upgrade.preStart = ''
27
45
${pkgs.networkmanager}/bin/nm-online -s -q # wait until the internet is online, as esp. if we go offline we need to wait to retry...
28
46
cd /etc/nixos
47
+
${pkgs.git}/bin/git remote set-url origin https://git.freshlybakedca.ke/patisserie.git:workspace=projects/packetmix.git
29
48
${pkgs.git}/bin/git fetch
30
49
${pkgs.git}/bin/git checkout origin/release
31
50
'';
+4
-1
packetmix/systems/common/tailscale.nix
+4
-1
packetmix/systems/common/tailscale.nix
+7
-1
packetmix/systems/corsair/openlinkhub.nix
+7
-1
packetmix/systems/corsair/openlinkhub.nix
···
46
46
[ -f ${path}/database/scheduler.json ] || cp ${pkg}/var/lib/OpenLinkHub/schduler.json ${path}/database/scheduler.json
47
47
mkdir -p ${path}/database/temperatures
48
48
mkdir -p ${path}/database/profiles
49
+
mkdir -p ${path}/database/macros
50
+
mkdir -p ${path}/database/led
49
51
50
-
cp -r ${pkg}/var/lib/OpenLinkHub/database/keyboard ${path}/database/keyboard
52
+
cp -r ${pkg}/var/lib/OpenLinkHub/database/keyboard ${path}/database
53
+
cp -r ${pkg}/var/lib/OpenLinkHub/database/lcd ${path}/database
54
+
cp -r ${pkg}/var/lib/OpenLinkHub/database/external ${path}/database
55
+
cp -r ${pkg}/var/lib/OpenLinkHub/database/nexus ${path}/database
56
+
cp -r ${pkg}/var/lib/OpenLinkHub/database/language ${path}/database
51
57
52
58
[ -L ${path}/static ] || ln -s ${pkg}/var/lib/OpenLinkHub/static ${path}/static
53
59
[ -L ${path}/web ] || ln -s ${pkg}/var/lib/OpenLinkHub/web ${path}/web
+15
-10
packetmix/systems/default.nix
+15
-10
packetmix/systems/default.nix
···
3
3
#
4
4
# SPDX-License-Identifier: MIT
5
5
6
-
{ config, lib, ... }:
6
+
{
7
+
config,
8
+
...
9
+
}:
7
10
let
8
11
nixpkgs = config.inputs.nixpkgs.result;
9
12
in
···
58
61
};
59
62
homes = { inherit (config.homes) "coded:x86_64-linux"; };
60
63
};
61
-
config.systems.nixos."saurosuchus" = {
64
+
config.systems.nixos."shorthair" = {
62
65
pkgs = nixpkgs.x86_64-linux;
63
66
ingredients = [
64
-
"kde"
67
+
"corsair"
65
68
"personal"
66
69
];
67
70
args = {
68
71
system = "x86_64-linux";
69
72
project = config;
70
73
};
71
-
homes = { inherit (config.homes) "pinea:x86_64-linux"; };
74
+
homes = { inherit (config.homes) "coded:x86_64-linux"; };
72
75
};
73
-
config.systems.nixos."shorthair" = {
76
+
config.systems.nixos."midnight" = {
74
77
pkgs = nixpkgs.x86_64-linux;
75
78
ingredients = [
76
-
"corsair"
77
-
"personal"
79
+
"freshlybakedcake"
80
+
"nix-serve"
81
+
"server"
78
82
];
79
83
args = {
80
84
system = "x86_64-linux";
81
85
project = config;
82
86
};
83
-
homes = { inherit (config.homes) "coded:x86_64-linux"; };
84
87
};
85
-
config.systems.nixos."midnight" = {
88
+
config.systems.nixos."teal" = {
86
89
pkgs = nixpkgs.x86_64-linux;
87
90
ingredients = [
88
91
"freshlybakedcake"
89
92
"server"
93
+
"wiki"
90
94
];
91
95
args = {
92
96
system = "x86_64-linux";
93
97
project = config;
94
98
};
95
99
};
96
-
config.systems.nixos."teal" = {
100
+
config.systems.nixos."umber" = {
97
101
pkgs = nixpkgs.x86_64-linux;
98
102
ingredients = [
99
103
"freshlybakedcake"
100
104
"server"
105
+
"wiki"
101
106
];
102
107
args = {
103
108
system = "x86_64-linux";
-1
packetmix/systems/emden/hardware-configuration.nix
-1
packetmix/systems/emden/hardware-configuration.nix
-1
packetmix/systems/emden/steam.nix
-1
packetmix/systems/emden/steam.nix
-2
packetmix/systems/espanso/espanso.nix
-2
packetmix/systems/espanso/espanso.nix
-63
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride/espanso-capdacoverride.nix
-63
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride/espanso-capdacoverride.nix
···
1
-
# SPDX-FileCopyrightText: 2025 Eelco Dolstra and the Nixpkgs/NixOS contributors
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{
6
-
autoPatchelfHook,
7
-
capDacOverrideWrapperDir,
8
-
espanso,
9
-
patchelfUnstable, # have to use patchelfUnstable to support --rename-dynamic-symbols
10
-
stdenv,
11
-
}:
12
-
let
13
-
inherit (espanso) version;
14
-
pname = "${espanso.pname}-capdacoverride";
15
-
16
-
wrapperLibName = "wrapper-lib.so";
17
-
18
-
# On Wayland, Espanso requires the DAC_OVERRIDE capability. One can create a wrapper binary with this
19
-
# capability using the `config.security.wrappers.<name>` framework. However, this is not enough: the
20
-
# capability is required by a worker process of Espanso created by forking `/proc/self/exe`, which points
21
-
# to the executable **without** the DAC_OVERRIDE capability. Thus, we inject a wrapper library into Espanso
22
-
# that redirects requests to `/proc/self/exe` to the binary with the proper capabilities.
23
-
wrapperLib = stdenv.mkDerivation {
24
-
name = "${pname}-${version}-wrapper-lib";
25
-
26
-
dontUnpack = true;
27
-
28
-
postPatch = ''
29
-
substitute ${./wrapper-lib.c} lib.c --subst-var-by to "${capDacOverrideWrapperDir}/espanso-wayland"
30
-
'';
31
-
32
-
buildPhase = ''
33
-
runHook preBuild
34
-
cc -fPIC -shared lib.c -o ${wrapperLibName}
35
-
runHook postBuild
36
-
'';
37
-
38
-
installPhase = ''
39
-
runHook preInstall
40
-
install -D -t $out/lib ${wrapperLibName}
41
-
runHook postInstall
42
-
'';
43
-
};
44
-
in
45
-
espanso.overrideAttrs (previousAttrs: {
46
-
inherit pname;
47
-
48
-
buildInputs = previousAttrs.buildInputs ++ [ wrapperLib ];
49
-
50
-
nativeBuildInputs = previousAttrs.nativeBuildInputs ++ [
51
-
autoPatchelfHook
52
-
patchelfUnstable
53
-
];
54
-
55
-
postInstall = ''
56
-
echo readlink readlink_wrapper > readlink_name_map
57
-
patchelf \
58
-
--rename-dynamic-symbols readlink_name_map \
59
-
--add-needed ${wrapperLibName} \
60
-
"$out/bin/espanso"
61
-
''
62
-
+ previousAttrs.postInstall;
63
-
})
-26
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride/wrapper-lib.c
-26
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride/wrapper-lib.c
···
1
-
/*
2
-
* SPDX-FileCopyrightText: 2025 Eelco Dolstra and the Nixpkgs/NixOS contributors
3
-
*
4
-
* SPDX-License-Identifier: MIT
5
-
*/
6
-
7
-
#include <stdio.h>
8
-
#include <string.h>
9
-
#include <unistd.h>
10
-
11
-
static const char from[] = "/proc/self/exe";
12
-
static const char to[] = "@to@";
13
-
14
-
ssize_t readlink_wrapper(const char *restrict path, char *restrict buf, size_t bufsize) {
15
-
if (strcmp(path, from) == 0) {
16
-
printf("readlink_wrapper.c: Resolving readlink call to '%s' to '%s'\n", from, to);
17
-
size_t to_length = strlen(to);
18
-
if (to_length > bufsize) {
19
-
to_length = bufsize;
20
-
}
21
-
memcpy(buf, to, to_length);
22
-
return to_length;
23
-
} else {
24
-
return readlink(path, buf, bufsize);
25
-
}
26
-
}
-63
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride.nix
-63
packetmix/systems/espanso/nixpkgs-328890--espanso-capdacoverride.nix
···
1
-
# SPDX-FileCopyrightText: 2025 Eelco Dolstra and the Nixpkgs/NixOS contributors
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{
6
-
config,
7
-
lib,
8
-
pkgs,
9
-
...
10
-
}:
11
-
12
-
let
13
-
cfg = config.programs.espanso.capdacoverride;
14
-
in
15
-
{
16
-
meta = {
17
-
maintainers = with lib.maintainers; [ pitkling ];
18
-
};
19
-
20
-
options = {
21
-
programs.espanso.capdacoverride = {
22
-
enable = (lib.mkEnableOption "espanso-wayland overlay with DAC_OVERRIDE capability") // {
23
-
description = ''
24
-
Creates an espanso binary with the DAC_OVERRIDE capability (via `security.wrappers`) and overlays `pkgs.espanso-wayland` such that self-forks call the capability-enabled binary.
25
-
Required for `pkgs.espanso-wayland` to work correctly if not run with root privileges.
26
-
'';
27
-
};
28
-
29
-
package = lib.mkOption {
30
-
type = lib.types.package // {
31
-
check = package: lib.types.package.check package && (builtins.elem "wayland" package.buildFeatures);
32
-
description =
33
-
lib.types.package.description
34
-
+ " for espanso with wayland support (`package.builtFeatures` must contain `\"wayland\"`)";
35
-
};
36
-
default = pkgs._espanso-wayland-orig;
37
-
defaultText = "pkgs.espanso-wayland (before applying the overlay)";
38
-
description = "The espanso-wayland package used as the base to generate the capability-enabled package.";
39
-
};
40
-
};
41
-
};
42
-
43
-
config = lib.mkIf cfg.enable {
44
-
nixpkgs.overlays = [
45
-
(final: prev: {
46
-
_espanso-wayland-orig = prev.espanso-wayland;
47
-
espanso-wayland =
48
-
pkgs.callPackage ./nixpkgs-328890--espanso-capdacoverride/espanso-capdacoverride.nix
49
-
{
50
-
capDacOverrideWrapperDir = "${config.security.wrapperDir}";
51
-
espanso = cfg.package;
52
-
};
53
-
})
54
-
];
55
-
56
-
security.wrappers."espanso-wayland" = {
57
-
source = lib.getExe pkgs.espanso-wayland;
58
-
capabilities = "cap_dac_override+p";
59
-
owner = "root";
60
-
group = "root";
61
-
};
62
-
};
63
-
}
+5
packetmix/systems/freshlybakedcake/users.nix
+5
packetmix/systems/freshlybakedcake/users.nix
···
1
1
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, ... }:
4
6
{
5
7
users.users.coded = {
6
8
isNormalUser = true;
···
18
20
];
19
21
};
20
22
23
+
programs.zsh.enable = true;
21
24
users.users.minion = {
22
25
isNormalUser = true;
23
26
description = "Skyler Grey";
···
31
34
"sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIJRzQbQjXFpHKtt8lpNKmoNx57+EJ/z3wnKOn3/LjM6cAAAAFXNzaDppeXViaWtleV9yZXNpZGVudA== iyubikey_resident"
32
35
"sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIOhzJ0p9bFRSURUjV05rrt5jCbxPXke7juNbEC9ZJXS/AAAAGXNzaDp0aW55X3l1YmlrZXlfcmVzaWRlbnQ= tiny_yubikey_resident"
33
36
];
37
+
38
+
shell = pkgs.zsh;
34
39
};
35
40
36
41
users.users.pinea = {
+1
-1
packetmix/systems/freshlybakedcake+personal/kanidm.nix
+1
-1
packetmix/systems/freshlybakedcake+personal/kanidm.nix
-1
packetmix/systems/gaming/steam.nix
-1
packetmix/systems/gaming/steam.nix
-29
packetmix/systems/kde/kde.nix
-29
packetmix/systems/kde/kde.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
{ pkgs, ... }:
6
-
{
7
-
services.desktopManager.plasma6.enable = true;
8
-
services.displayManager.sddm.enable = true;
9
-
services.displayManager.sddm.wayland.enable = true;
10
-
services.displayManager.sddm.settings.General.DisplayServer = "wayland";
11
-
12
-
environment.plasma6.excludePackages = with pkgs.kdePackages; [
13
-
plasma-browser-integration
14
-
elisa
15
-
okular
16
-
krdp
17
-
];
18
-
19
-
environment.systemPackages = with pkgs; [
20
-
kdePackages.kcalc # Calculator
21
-
kdePackages.kcharselect # Tool to select and copy special characters from all installed fonts
22
-
kdePackages.kcolorchooser # A small utility to select a color
23
-
kdePackages.ksystemlog # KDE SystemLog Application
24
-
kdePackages.sddm-kcm # Configuration module for SDDM
25
-
hardinfo2 # System information and benchmarks for Linux systems
26
-
haruna # Open source video player built with Qt/QML and libmpv
27
-
wayland-utils # Wayland utilities
28
-
];
29
-
}
-1
packetmix/systems/marbled/hardware-configuration.nix
-1
packetmix/systems/marbled/hardware-configuration.nix
+10
packetmix/systems/midnight/lix.nix
+10
packetmix/systems/midnight/lix.nix
+8
packetmix/systems/midnight/remoteBuilds.nix
+8
packetmix/systems/midnight/remoteBuilds.nix
+7
packetmix/systems/midnight/secrets.nix
+7
packetmix/systems/midnight/secrets.nix
+22
-3
packetmix/systems/midnight/spindle.nix
+22
-3
packetmix/systems/midnight/spindle.nix
···
2
2
#
3
3
# SPDX-License-Identifier: MIT
4
4
5
-
{ project, ... }:
5
+
{
6
+
project,
7
+
pkgs,
8
+
lib,
9
+
...
10
+
}:
6
11
{
7
12
imports = [ project.inputs.tangled.result.nixosModules.spindle ];
8
13
9
-
networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 1024 ];
14
+
networking.firewall.allowedTCPPorts = [ 1024 ];
10
15
11
-
services.tangled-spindle = {
16
+
services.tangled.spindle = {
12
17
enable = true;
13
18
server = {
14
19
listenAddr = "0.0.0.0:1024";
···
18
23
};
19
24
pipelines.workflowTimeout = "2h";
20
25
};
26
+
27
+
virtualisation.docker.autoPrune = {
28
+
enable = true;
29
+
dates = "hourly";
30
+
};
31
+
systemd.services.docker-prune.serviceConfig.ExecStart = lib.mkForce ''
32
+
${pkgs.docker}/bin/docker network prune -f ;\
33
+
${pkgs.docker}/bin/docker container prune -f
34
+
'';
35
+
36
+
clicks.storage.impermanence.persist.directories = [
37
+
"/var/lib/docker"
38
+
"/var/lib/spindle"
39
+
];
21
40
}
+11
packetmix/systems/minion/flatpak.nix
+11
packetmix/systems/minion/flatpak.nix
+1
-2
packetmix/systems/niri/niri.nix
+1
-2
packetmix/systems/niri/niri.nix
···
5
5
#
6
6
# This file is based on some work from sodiboo's niri-flake, see https://github.com/sodiboo/niri-flake/blob/main/flake.nix
7
7
{
8
-
project,
9
8
pkgs,
10
9
lib,
11
10
...
···
46
45
partOf = [ "graphical-session.target" ];
47
46
serviceConfig = {
48
47
Type = "simple";
49
-
ExecStart = "${pkgs.libsForQt5.polkit-kde-agent}/libexec/polkit-kde-authentication-agent-1";
48
+
ExecStart = "${pkgs.kdePackages.polkit-kde-agent-1}/libexec/polkit-kde-authentication-agent-1";
50
49
Restart = "on-failure";
51
50
RestartSec = 1;
52
51
TimeoutStopSec = 10;
+18
packetmix/systems/nix-serve/cache.nix
+18
packetmix/systems/nix-serve/cache.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, ... }:
6
+
{
7
+
networking.firewall.allowedTCPPorts = [ 1025 ];
8
+
9
+
services.nix-serve = {
10
+
enable = true;
11
+
package = pkgs.nix-serve-ng;
12
+
13
+
secretKeyFile = "/secrets/cache/signer.key";
14
+
15
+
bindAddress = "0.0.0.0";
16
+
port = 1025;
17
+
};
18
+
}
-4
packetmix/systems/personal/configuration.nix
-4
packetmix/systems/personal/configuration.nix
···
8
8
9
9
{
10
10
project,
11
-
config,
12
11
system,
13
12
pkgs,
14
13
...
15
14
}:
16
15
{
17
-
# Enable CUPS to print documents.
18
-
services.printing.enable = true;
19
-
20
16
# Enable touchpad support (enabled default in most desktopManager).
21
17
# services.xserver.libinput.enable = true;
22
18
-3
packetmix/systems/redhead/android.nix
-3
packetmix/systems/redhead/android.nix
+5
-6
packetmix/systems/redhead/hardware-configuration.nix
+5
-6
packetmix/systems/redhead/hardware-configuration.nix
···
5
5
{
6
6
config,
7
7
lib,
8
-
pkgs,
9
8
modulesPath,
10
9
...
11
10
}:
···
38
37
};
39
38
40
39
fileSystems."/" = {
41
-
device = "/dev/disk/by-uuid/9ceb17f8-af04-42ae-9c5c-98b1e72c5a45";
40
+
device = "/dev/disk/by-label/persist";
42
41
fsType = "btrfs";
43
42
options = [ "subvol=@" ];
44
43
};
45
44
46
45
fileSystems."/nix" = {
47
-
device = "/dev/disk/by-uuid/9ceb17f8-af04-42ae-9c5c-98b1e72c5a45";
46
+
device = "/dev/disk/by-label/persist";
48
47
fsType = "btrfs";
49
48
options = [ "subvol=@nix" ];
50
49
};
···
54
53
clicks.storage.impermanence = {
55
54
enable = true;
56
55
devices = {
57
-
root = "/dev/disk/by-uuid/9ceb17f8-af04-42ae-9c5c-98b1e72c5a45";
58
-
persist = "/dev/disk/by-uuid/9ceb17f8-af04-42ae-9c5c-98b1e72c5a45"; # Not a typo - using subvol=@persist on fileSystems."/persist" to put in a specific subvolume
56
+
root = "/dev/disk/by-label/persist";
57
+
persist = "/dev/disk/by-label/persist"; # Not a typo - using subvol=@persist on fileSystems."/persist" to put in a specific subvolume
59
58
};
60
59
};
61
60
62
61
fileSystems."/boot" = {
63
-
device = "/dev/disk/by-uuid/6181-C692";
62
+
device = "/dev/disk/by-label/BOOT";
64
63
fsType = "vfat";
65
64
options = [
66
65
"fmask=0077"
+33
packetmix/systems/redhead/lanzaboote.nix
+33
packetmix/systems/redhead/lanzaboote.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
project,
7
+
pkgs,
8
+
lib,
9
+
...
10
+
}:
11
+
{
12
+
imports = [ project.inputs.lanzaboote.result.nixosModules.lanzaboote ];
13
+
14
+
environment.systemPackages = [
15
+
pkgs.sbctl
16
+
];
17
+
18
+
boot.loader.systemd-boot.enable = lib.mkForce false;
19
+
boot.lanzaboote = {
20
+
enable = true;
21
+
pkiBundle = "/var/lib/sbctl";
22
+
publicKeyFile = "/secrets/lanzaboote/db/db.pem";
23
+
privateKeyFile = "/secrets/lanzaboote/db/db.key";
24
+
};
25
+
26
+
environment.etc."sbctl/sbctl.conf".text = builtins.toJSON {
27
+
keydir = "/secrets/lanzaboote";
28
+
};
29
+
30
+
clicks.storage.impermanence.persist.directories = [
31
+
"/var/lib/sbctl"
32
+
];
33
+
}
+68
packetmix/systems/redhead/nextcloud-docker-dev.nix
+68
packetmix/systems/redhead/nextcloud-docker-dev.nix
···
1
+
# SPDX-FileCopyrightText: 2025 Collabora Productivity Limited
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
networking.hosts = {
7
+
"127.0.0.1" = [
8
+
"nextcloud.local"
9
+
"nextcloud2.local"
10
+
"nextcloud3.local"
11
+
"stable16.local"
12
+
"stable17.local"
13
+
"stable18.local"
14
+
"stable19.local"
15
+
"stable20.local"
16
+
"stable21.local"
17
+
"stable22.local"
18
+
"stable23.local"
19
+
"stable24.local"
20
+
"stable25.local"
21
+
"stable26.local"
22
+
"stable27.local"
23
+
"stable28.local"
24
+
"stable29.local"
25
+
"stable30.local"
26
+
"stable31.local"
27
+
"stable32.local"
28
+
"mail.local"
29
+
"sso.local"
30
+
"imap.local"
31
+
"collabora.local"
32
+
"codedev.local"
33
+
"onlyoffice.local"
34
+
"proxy.local"
35
+
"hpb.local"
36
+
"push.local"
37
+
"keycloak.local"
38
+
"portal.local"
39
+
"gs1.local"
40
+
"gs2.local"
41
+
"lookup.local"
42
+
"elasticsearch.local"
43
+
"elasticsearch-ui.local"
44
+
"pgadmin.local"
45
+
"phpmyadmin.local"
46
+
"talk-signaling.local"
47
+
"talk-recording.local"
48
+
];
49
+
};
50
+
51
+
services.nginx.virtualHosts."nextcloud.docker.dev.redhead.starrysky.fyi" = {
52
+
addSSL = true;
53
+
enableACME = true;
54
+
acmeRoot = null;
55
+
56
+
locations."/" = {
57
+
proxyPass = "http://127.0.0.1:8062";
58
+
recommendedProxySettings = true;
59
+
proxyWebsockets = true;
60
+
};
61
+
};
62
+
63
+
security.acme.certs."nextcloud.docker.dev.redhead.starrysky.fyi" = {
64
+
dnsProvider = "cloudflare";
65
+
environmentFile = "/secrets/acme/environmentFile";
66
+
email = "skyler.grey@collabora.com";
67
+
};
68
+
}
+7
-1
packetmix/systems/redhead/nextcloud.nix
+7
-1
packetmix/systems/redhead/nextcloud.nix
···
18
18
19
19
hostName = "nextcloud.dev.redhead.starrysky.fyi";
20
20
21
-
package = pkgs.nextcloud31;
21
+
package = pkgs.nextcloud32;
22
22
23
23
poolSettings = {
24
24
pm = "dynamic";
···
67
67
environmentFile = "/secrets/acme/environmentFile";
68
68
email = "skyler.grey@collabora.com";
69
69
};
70
+
71
+
networking.firewall.allowedTCPPorts = [
72
+
80
73
+
443
74
+
9980
75
+
];
70
76
71
77
services.nginx.virtualHosts."collabora.dev.redhead.starrysky.fyi" = {
72
78
addSSL = true;
+8
packetmix/systems/redhead/printing.nix
+8
packetmix/systems/redhead/printing.nix
-4
packetmix/systems/redhead/remoteBuilds.nix
-4
packetmix/systems/redhead/remoteBuilds.nix
-67
packetmix/systems/saurosuchus/hardware.nix
-67
packetmix/systems/saurosuchus/hardware.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
{
5
-
config,
6
-
lib,
7
-
modulesPath,
8
-
...
9
-
}:
10
-
11
-
{
12
-
imports = [
13
-
(modulesPath + "/installer/scan/not-detected.nix")
14
-
];
15
-
16
-
boot.initrd.availableKernelModules = [
17
-
"nvme"
18
-
"xhci_pci"
19
-
"ahci"
20
-
"usbhid"
21
-
"sd_mod"
22
-
"ext4"
23
-
];
24
-
boot.initrd.kernelModules = [
25
-
"kvm-amd"
26
-
"amdgpu"
27
-
];
28
-
boot.extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback ];
29
-
boot.kernelModules = [
30
-
"v4l2loopback"
31
-
];
32
-
boot.kernel.sysctl."kernel.sysrq" = 1;
33
-
boot.initrd = {
34
-
systemd.enable = true;
35
-
luks.devices."key".device = "/dev/disk/by-uuid/f3547d7f-707e-4b17-a22b-d31b6af0a67a";
36
-
luks.devices."MAIN" = {
37
-
device = "/dev/disk/by-uuid/5183512d-92c1-4272-a746-8518ff7cde4b";
38
-
keyFile = "/key:/dev/mapper/key";
39
-
};
40
-
};
41
-
42
-
fileSystems."/" = {
43
-
device = "/dev/mapper/MAIN";
44
-
fsType = "btrfs";
45
-
};
46
-
47
-
fileSystems."/boot" = {
48
-
device = "/dev/disk/by-uuid/DCBE-AA38";
49
-
fsType = "vfat";
50
-
};
51
-
52
-
swapDevices = [
53
-
{
54
-
device = "/dev/disk/by-uuid/c956d054-0dda-42c1-950d-26aefd3a8135";
55
-
}
56
-
];
57
-
58
-
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
59
-
# (the default) this is the recommended approach. When using systemd-networkd it's
60
-
# still possible to use this option, but it's recommended to use it in conjunction
61
-
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
62
-
networking.useDHCP = lib.mkDefault true;
63
-
# networking.interfaces.wlp2s0.useDHCP = lib.mkDefault true;
64
-
65
-
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
66
-
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
67
-
}
-7
packetmix/systems/saurosuchus/hostname.nix
-7
packetmix/systems/saurosuchus/hostname.nix
+2
-1
packetmix/systems/server/tailscale.nix
+2
-1
packetmix/systems/server/tailscale.nix
+7
packetmix/systems/server/zsh.nix
+7
packetmix/systems/server/zsh.nix
+6
packetmix/systems/shorthair/flatpak.nix
+6
packetmix/systems/shorthair/flatpak.nix
+8
packetmix/systems/shorthair/vr.nix
+8
packetmix/systems/shorthair/vr.nix
+10
packetmix/systems/shorthair/webcam.nix
+10
packetmix/systems/shorthair/webcam.nix
+4
packetmix/systems/teal/acme.nix
+4
packetmix/systems/teal/acme.nix
+18
packetmix/systems/teal/cache.nix
+18
packetmix/systems/teal/cache.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
services.nginx.enable = true;
7
+
services.nginx.virtualHosts."cache.freshlybakedca.ke" = {
8
+
addSSL = true;
9
+
enableACME = true;
10
+
acmeRoot = null;
11
+
12
+
locations."/" = {
13
+
proxyPass = "http://192.168.1.2:1025";
14
+
recommendedProxySettings = true;
15
+
proxyWebsockets = true;
16
+
};
17
+
};
18
+
}
+38
-3
packetmix/systems/teal/copyparty.nix
+38
-3
packetmix/systems/teal/copyparty.nix
···
114
114
];
115
115
};
116
116
};
117
+
"/groups/library" = {
118
+
path = "/var/lib/libraries";
119
+
120
+
access = {
121
+
A = [
122
+
"coded"
123
+
"minion"
124
+
];
125
+
};
126
+
127
+
flags = {
128
+
chmod_f = "770";
129
+
chmod_d = "770";
130
+
gid = "974";
131
+
};
132
+
};
117
133
};
118
134
};
119
135
···
130
146
builtins.attrValues
131
147
(map (mount: mount.path))
132
148
(map (lib.removePrefix "/var/lib/"))
149
+
(builtins.filter (name: !(builtins.elem name [ "libraries" ]))) # For shared directories we can't afford for systemd to change permissions on us...
133
150
(lib.concatStringsSep " ")
134
151
]);
135
152
};
···
160
177
proxyWebsockets = true;
161
178
162
179
extraConfig = ''
163
-
proxy_hide_header X-Webauth-Login;
164
180
proxy_set_header X-Webauth-Login $preferred_username;
165
181
166
182
proxy_intercept_errors on;
···
175
191
if not headers["Content-Type"] then
176
192
return
177
193
end
178
-
194
+
179
195
ngx.req.read_body()
180
196
local body = ngx.req.get_body_data()
181
197
···
276
292
virtualHosts = [ "internal.files.freshly.space" ];
277
293
};
278
294
279
-
clicks.storage.impermanence.persist.directories = [ "/var/lib/copyparty" ];
295
+
users.groups."copyparty+kavita" = {
296
+
gid = 974; # Copied from random assignment on teal. Entirely arbitrary.
297
+
members = [
298
+
"copyparty"
299
+
"kavita"
300
+
];
301
+
};
302
+
303
+
clicks.storage.impermanence.persist.directories = [
304
+
"/var/lib/copyparty"
305
+
{
306
+
directory = "/var/lib/libraries";
307
+
mode = "0770";
308
+
group = "copyparty+kavita";
309
+
defaultPerms = {
310
+
mode = "0770";
311
+
group = "copyparty+kavita";
312
+
};
313
+
}
314
+
];
280
315
};
281
316
}
+7
packetmix/systems/teal/fail2ban.nix
+7
packetmix/systems/teal/fail2ban.nix
+26
-1
packetmix/systems/teal/fava.nix
+26
-1
packetmix/systems/teal/fava.nix
···
40
40
plugin "fava.plugins.link_documents"
41
41
42
42
plugin "beancount.plugins.pedantic"
43
-
plugin "beancount.plugins.unrealized" "Unrealized"
43
+
plugin "beancount.plugins.implicit_prices"
44
+
45
+
plugin "beancount_share.share" "{
46
+
'mark_name': 'share',
47
+
'meta_name': 'shared',
48
+
'account_debtors': 'Assets:People',
49
+
'account_creditors': 'Liabilities:People',
50
+
'open_date': None,
51
+
'quantize': '0.01'
52
+
}"
53
+
'';
54
+
}
55
+
{
56
+
slug = "hyperneutrino";
57
+
name = "HyperNeutrino";
58
+
beancountOptions.operating_currency = "CAD";
59
+
favaOptions = {
60
+
invert-income-liabilities-equity = "true";
61
+
auto-reload = "true";
62
+
fiscal-year-end = "03-31";
63
+
};
64
+
extraConfig = ''
65
+
plugin "fava.plugins.tag_discovered_documents"
66
+
plugin "fava.plugins.link_documents"
67
+
68
+
plugin "beancount.plugins.pedantic"
44
69
plugin "beancount.plugins.implicit_prices"
45
70
46
71
plugin "beancount_share.share" "{
+22
packetmix/systems/teal/headscale.nix
+22
packetmix/systems/teal/headscale.nix
···
21
21
*/
22
22
"group:users" = [
23
23
"coded@"
24
+
"hyperneutrino@"
24
25
"matei@"
25
26
"minion@"
26
27
"mostlyturquoise@"
···
111
112
);
112
113
};
113
114
dns = {
115
+
extra_records = [
116
+
{
117
+
# cartandflynns.turquoise.fyi -> nordic
118
+
name = "cartandflynns.turquoise.fyi";
119
+
type = "A";
120
+
value = "100.64.0.37";
121
+
}
122
+
{
123
+
# puttheleeinholly.turquoise.fyi -> nordic
124
+
name = "puttheleeinholly.turquoise.fyi";
125
+
type = "A";
126
+
value = "100.64.0.37";
127
+
}
128
+
{
129
+
# wiki.starrysky.fyi -> umber
130
+
name = "wiki.starrysky.fyi";
131
+
type = "A";
132
+
value = "100.64.0.48";
133
+
}
134
+
];
114
135
nameservers.global = [
115
136
"1.1.1.1"
116
137
"1.0.0.1"
117
138
"2606:4700:4700::1111"
118
139
"2606:4700:4700::1001"
119
140
];
141
+
search_domains = [ "search.freshly.space" ];
120
142
base_domain = "clicks.domains";
121
143
};
122
144
auth_setup_allow_defer = true; # Otherwise we'll fall back to CLI auth
+33
-10
packetmix/systems/teal/josh.nix
+33
-10
packetmix/systems/teal/josh.nix
···
3
3
#
4
4
# SPDX-License-Identifier: MIT
5
5
6
-
{ pkgs, lib, ... }:
6
+
{
7
+
project,
8
+
pkgs,
9
+
lib,
10
+
...
11
+
}:
12
+
let
13
+
josh = project.packages.josh.result.${pkgs.stdenv.hostPlatform.system};
14
+
in
7
15
{
8
16
users.users.git = {
9
17
isSystemUser = true;
10
18
group = "git";
11
-
shell = "${pkgs.josh}/bin/josh-ssh-shell";
19
+
shell = "${josh}/bin/josh-ssh-shell";
20
+
createHome = true;
21
+
home = "/var/lib/josh/home";
12
22
};
13
23
users.groups.git = { };
14
24
···
20
30
environment =
21
31
let
22
32
url_config = repo: ''
23
-
[url "https://tangled.sh/@freshlybakedca.ke/${repo}"]
24
-
insteadOf = "https://tangled.sh/@freshlybakedca.ke/${repo}.git"
33
+
[url "https://tangled.org/freshlybakedca.ke/${repo}.git"]
34
+
insteadOf = "https://tangled.org/freshlybakedca.ke/${repo}.git"
35
+
insteadOf = "https://tangled.org/@freshlybakedca.ke/${repo}.git"
36
+
insteadOf = "ssh://git@tangled.org/freshlybakedca.ke/${repo}.git"
37
+
38
+
[url "ssh://git@tangled.org/freshlybakedca.ke/${repo}"]
39
+
pushInsteadOf = "ssh://git@tangled.org/freshlybakedca.ke/${repo}.git"
40
+
'';
41
+
other_url_config = repo: ''
42
+
[url "https://tangled.org/${repo}.git"]
43
+
insteadOf = "https://tangled.org/freshlybakedca.ke/${repo}.git"
44
+
insteadOf = "https://tangled.org/@freshlybakedca.ke/${repo}.git"
45
+
insteadOf = "ssh://git@tangled.org/freshlybakedca.ke/${repo}.git"
25
46
26
-
[url "ssh://git@tangled.sh/freshlybakedca.ke/${repo}"]
27
-
insteadOf = "ssh://git@tangled.sh/freshlybakedca.ke/${repo}.git"
47
+
[url "ssh://git@tangled.org/${repo}"]
48
+
pushInsteadOf = "ssh://git@tangled.org/freshlybakedca.ke/${repo}.git"
28
49
'';
29
50
# ^^ Tangled doesn't support cloning from .git URLs, so we have to not have .git at the end of our repos
30
51
# ^^ Additionally, we can only push to Tangled over SSH, not HTTP
31
52
32
-
gitconfig = pkgs.writeTextDir "/.gitconfig" (url_config "patisserie");
53
+
gitconfig = pkgs.writeTextDir "/.gitconfig" (
54
+
(url_config "patisserie") + (other_url_config "footnotes.social/core")
55
+
);
33
56
in
34
57
{
35
58
HOME = gitconfig;
···
45
68
};
46
69
47
70
script =
48
-
"${pkgs.josh}/bin/josh-proxy"
71
+
"${josh}/bin/josh-proxy"
49
72
+ " --local /var/lib/josh/local"
50
-
+ " --remote https://tangled.sh/@freshlybakedca.ke"
51
-
+ " --remote ssh://git@tangled.sh/freshlybakedca.ke"
73
+
+ " --remote https://tangled.org/@freshlybakedca.ke"
74
+
+ " --remote ssh://git@tangled.org/freshlybakedca.ke"
52
75
+ " --port 1032";
53
76
};
54
77
+1
-1
packetmix/systems/teal/kanidm.nix
+1
-1
packetmix/systems/teal/kanidm.nix
+64
packetmix/systems/teal/kavita.nix
+64
packetmix/systems/teal/kavita.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
{
5
+
project,
6
+
pkgs,
7
+
config,
8
+
lib,
9
+
...
10
+
}:
11
+
{
12
+
disabledModules = [ "services/web-apps/kavita.nix" ];
13
+
imports = [
14
+
"${project.inputs.nixos-unstable.src}/nixos/modules/services/web-apps/kavita.nix"
15
+
];
16
+
17
+
services.kavita = {
18
+
enable = true;
19
+
package = project.packages.kavita.result."x86_64-linux";
20
+
tokenKeyFile = "/secrets/kavita/tokenKeyFile";
21
+
settings = {
22
+
Port = 1034;
23
+
OpenIdConnectSettings = {
24
+
Authority = "https://idm.freshly.space/oauth2/openid/kavita";
25
+
ClientId = "kavita";
26
+
Secret = "@OIDC_SECRET@";
27
+
Enabled = true;
28
+
CustomScopes = [
29
+
"groups"
30
+
"openid"
31
+
"profile"
32
+
];
33
+
};
34
+
};
35
+
};
36
+
37
+
systemd.services.kavita = {
38
+
preStart = lib.mkAfter ''
39
+
${pkgs.replace-secret}/bin/replace-secret '@OIDC_SECRET@' \
40
+
''${CREDENTIALS_DIRECTORY}/OIDC_SECRET \
41
+
'${config.services.kavita.dataDir}/config/appsettings.json'
42
+
43
+
while [[ \"$(${pkgs.curl}/bin/curl -s -L https://idm.freshly.space/status)\" != \"true\" ]]; do sleep 5; done
44
+
'';
45
+
serviceConfig.LoadCredential = [ "OIDC_SECRET:/secrets/kavita/OIDC_SECRET" ];
46
+
};
47
+
48
+
services.nginx.enable = true;
49
+
services.nginx.virtualHosts."kavita.freshly.space" = {
50
+
addSSL = true;
51
+
enableACME = true;
52
+
acmeRoot = null;
53
+
54
+
locations."/" = {
55
+
proxyPass = "http://127.0.0.1:1034";
56
+
recommendedProxySettings = true;
57
+
extraConfig = "proxy_http_version 1.1;";
58
+
};
59
+
};
60
+
61
+
clicks.storage.impermanence.persist.directories = [
62
+
"/var/lib/kavita"
63
+
];
64
+
}
+45
packetmix/systems/teal/pds.nix
+45
packetmix/systems/teal/pds.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
project,
7
+
system,
8
+
...
9
+
}:
10
+
{
11
+
services.bluesky-pds = {
12
+
enable = true;
13
+
package = project.packages.bluesky-pds.result.${system};
14
+
settings = {
15
+
PDS_HOSTNAME = "pds.freshly.space";
16
+
PDS_PORT = 1033;
17
+
PDS_SERVICE_HANDLE_DOMAINS = ".at.freshlybakedca.ke";
18
+
PDS_EMAIL_FROM_ADDRESS = "pds@freshly.space";
19
+
PDS_BLOB_UPLOAD_LIMIT = "268435456";
20
+
};
21
+
environmentFiles = [
22
+
"/secrets/pds/environmentFile"
23
+
];
24
+
};
25
+
26
+
services.nginx.virtualHosts."pds.freshly.space" = {
27
+
addSSL = true;
28
+
enableACME = true;
29
+
acmeRoot = null;
30
+
31
+
serverAliases = [ "*.at.freshlybakedca.ke" ];
32
+
33
+
locations."/" = {
34
+
proxyPass = "http://127.0.0.1:1033";
35
+
recommendedProxySettings = true;
36
+
proxyWebsockets = true;
37
+
};
38
+
39
+
extraConfig = ''
40
+
client_max_body_size 1024M;
41
+
'';
42
+
};
43
+
44
+
clicks.storage.impermanence.persist.directories = [ "/var/lib/pds" ];
45
+
}
+9
packetmix/systems/teal/postgresql.nix
+9
packetmix/systems/teal/postgresql.nix
+1
packetmix/systems/teal/silverbullet.nix
+1
packetmix/systems/teal/silverbullet.nix
···
23
23
listenAddress = "127.0.0.1";
24
24
package = project.inputs.nixos-unstable.result.${system}.silverbullet;
25
25
};
26
+
systemd.services.silverbullet.environment.SB_READ_ONLY = "true";
26
27
27
28
services.nginx.enable = true;
28
29
services.nginx.virtualHosts."silverbullet.clicks.codes" = {
+1
-1
packetmix/systems/teal/spindle.nix
+1
-1
packetmix/systems/teal/spindle.nix
+2
-14
packetmix/systems/teal/stalwart.nix
+2
-14
packetmix/systems/teal/stalwart.nix
···
5
5
{
6
6
project,
7
7
config,
8
-
pkgs,
9
8
lib,
10
9
...
11
10
}:
···
32
31
imports = [ "${project.inputs.nixos-unstable.src}/nixos/modules/services/mail/stalwart-mail.nix" ];
33
32
34
33
config = {
35
-
services.headscale.settings.dns.extra_records = [
36
-
{
37
-
# mail.freshly.space -> teal
38
-
name = "mail.freshly.space";
39
-
type = "A";
40
-
value = "100.64.0.5";
41
-
}
42
-
];
43
-
44
34
services.stalwart-mail = {
45
35
enable = true;
46
36
openFirewall = true;
···
153
143
systemd.services.stalwart-mail = {
154
144
requires = [ "postgresql.service" ];
155
145
wants = [
156
-
"acme-finished-mail.freshly.space.target"
146
+
"acme-mail.freshly.space.service"
157
147
]
158
-
++ (map (domain: "acme-finished-${domain}.target") mail_domains);
148
+
++ (map (domain: "acme-${domain}.service") mail_domains);
159
149
after = [
160
-
"acme-selfsigned-mail.freshly.space.service"
161
150
"acme-mail.freshly.space.service"
162
151
"postgresql.service"
163
152
]
164
-
++ (map (domain: "acme-selfsigned-${domain}.service") mail_domains)
165
153
++ (map (domain: "acme-${domain}.service") mail_domains);
166
154
serviceConfig.RestrictAddressFamilies = lib.mkForce [ ]; # We need the default restricted address families to access the postgres socket
167
155
};
-7
packetmix/systems/teal/vaultwarden.nix
-7
packetmix/systems/teal/vaultwarden.nix
···
3
3
# SPDX-License-Identifier: MIT
4
4
5
5
{
6
-
pkgs,
7
-
lib,
8
-
config,
9
-
...
10
-
}:
11
-
{
12
6
services.vaultwarden = {
13
7
enable = true;
14
8
dbBackend = "postgresql";
···
98
92
};
99
93
100
94
clicks.storage.impermanence.persist.directories = [
101
-
"/var/lib/postgresql"
102
95
"/var/lib/vaultwarden"
103
96
];
104
97
}
packetmix/systems/teal/wiki/favicon.ico
packetmix/systems/teal/wiki/favicon.ico
This is a binary file and will not be displayed.
+3
packetmix/systems/teal/wiki/favicon.ico.license
+3
packetmix/systems/teal/wiki/favicon.ico.license
+30
packetmix/systems/teal/wiki/icon.svg
+30
packetmix/systems/teal/wiki/icon.svg
···
1
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2047 2047" width="2047" height="2047"><defs><clipPath id="artboard-12577310203116897744"><rect x="0" y="0" width="2048" height="2048"/></clipPath><linearGradient id="13410183724541293533" x1="0" y1="1024" x2="2048" y2="1024" gradientTransform="matrix(0.000488281,0,0,0.000488281,0,0)"><stop stop-color="#8e1f71" /><stop offset="1" stop-color="#d11f3b" /></linearGradient><linearGradient id="7037891570365890902" x1="608.3107471590429" y1="1290.6144863048876" x2="1439.6892528409496" y2="1290.6144863048876" gradientTransform="matrix(0.001202822,0,0,0.001875367,-0.731689288,-1.920375772)"><stop stop-color="#fdbb57" /><stop offset="1" stop-color="#ff6f1f" /></linearGradient></defs><g>
2
+
<g clip-path="url(#artboard-12577310203116897744)">
3
+
<g>
4
+
<path d="M1024,0 C1589.0276124457105,0 2048,458.97238755428964 2048,1024 C2048,1589.0276124457105 1589.0276124457105,2048 1024,2048 C458.97238755428964,2048 0,1589.0276124457105 0,1024 C0,458.97238755428964 458.97238755428964,0 1024,0 Z" fill="url('#13410183724541293533')"/>
5
+
</g>
6
+
<g>
7
+
<g>
8
+
<path d="M608.3107471590429,1024.000000000001 C608.3107471590429,1024.000000000001 731.5841117946361,1557.2289726097745 731.5841117946361,1557.2289726097745 C731.5841117946361,1557.2289726097745 1310.6822433385853,1557.2289726097745 1310.6822433385853,1557.2289726097745 C1310.6822433385853,1557.2289726097745 1439.6892528409498,1024.000000000001 1439.6892528409498,1024.000000000001 C1439.6892528409498,1024.000000000001 608.3107471590429,1024.000000000001 608.3107471590429,1024.000000000001 Z" fill="url('#7037891570365890902')"/>
9
+
</g>
10
+
<g>
11
+
<g>
12
+
<path d="M659.0535042299737,1023.9999999999941 C659.0535042299737,1023.9999999999941 633.2521023295005,960.9299064655045 633.2521023295005,960.9299064655045 C633.2521023295005,960.9299064655045 659.0535042299732,889.2593456308584 659.0535042299732,889.2593456308584 C659.0535042299732,889.2593456308584 711.7114725606918,889.2593456308589 711.7114725606918,889.2593456308589 C711.7114725606918,889.2593456308589 689.6329435194218,826.1892520963702 689.6329435194218,826.1892520963702 C689.6329435194218,826.1892520963702 711.7114725606918,754.5186912617241 711.7114725606918,754.5186912617241 C711.7114725606918,754.5186912617241 784.36161869832,754.5186912617221 784.36161869832,754.5186912617221 C784.36161869832,754.5186912617221 767.4193922119493,691.4485977272336 767.4193922119493,691.4485977272336 C767.4193922119493,691.4485977272336 784.36161869832,619.7780368925883 784.36161869832,619.7780368925883 C784.36161869832,619.7780368925883 867.8557362803406,619.7780368925883 867.8557362803406,619.7780368925883 C867.8557362803406,619.7780368925883 856.8164717597062,556.7079433580998 856.8164717597062,556.7079433580998 C856.8164717597062,556.7079433580998 867.8557362803401,485.0373825234544 867.8557362803401,485.0373825234544 C867.8557362803401,485.0373825234544 1180.144263719638,485.0373825234544 1180.144263719638,485.0373825234544 C1180.144263719638,485.0373825234544 1191.183528240273,552.4077097080215 1191.183528240273,552.4077097080215 C1191.183528240273,552.4077097080215 1180.144263719638,619.7780368925883 1180.144263719638,619.7780368925883 C1180.144263719638,619.7780368925883 1263.6383813016655,619.7780368925883 1263.6383813016655,619.7780368925883 C1263.6383813016655,619.7780368925883 1280.580607788036,691.4485977272334 1280.580607788036,691.4485977272334 C1280.580607788036,691.4485977272334 1263.638381301666,754.5186912617221 1263.638381301666,754.5186912617221 C1263.638381301666,754.5186912617221 1336.288527439287,754.5186912617239 1336.288527439287,754.5186912617239 C1336.288527439287,754.5186912617239 1358.3670564805566,826.1892520963697 1358.3670564805566,826.1892520963697 C1358.3670564805566,826.1892520963697 1336.288527439287,889.2593456308589 1336.288527439287,889.2593456308589 C1336.288527439287,889.2593456308589 1388.946495770003,889.2593456308584 1388.946495770003,889.2593456308584 C1388.946495770003,889.2593456308584 1414.7478976704756,960.929906465504 1414.7478976704756,960.929906465504 C1414.7478976704756,960.929906465504 1388.946495770003,1023.9999999999934 1388.946495770003,1023.9999999999934 C1388.946495770003,1023.9999999999934 659.0535042299737,1023.9999999999941 659.0535042299737,1023.9999999999941 Z" fill="#fae59c"/>
13
+
</g>
14
+
<g>
15
+
<g>
16
+
<path d="M856.8164717597062,556.7079433580998 C856.8164717597062,556.7079433580998 1191.183528240273,552.4077097080215 1191.183528240273,552.4077097080215 C1191.183528240273,552.4077097080215 1180.1442637196387,619.7780368925883 1180.1442637196387,619.7780368925883 C1180.1442637196387,619.7780368925883 867.8557362803406,619.7780368925883 867.8557362803406,619.7780368925883 C867.8557362803406,619.7780368925883 856.8164717597062,556.7079433580998 856.8164717597062,556.7079433580998 Z" fill="#e7cc6e"/>
17
+
</g>
18
+
<g>
19
+
<path d="M767.4193922119489,691.4485977272334 C767.4193922119489,691.4485977272334 1280.580607788036,691.4485977272332 1280.580607788036,691.4485977272332 C1280.580607788036,691.4485977272332 1263.6383813016655,754.5186912617219 1263.6383813016655,754.5186912617219 C1263.6383813016655,754.5186912617219 784.36161869832,754.5186912617223 784.36161869832,754.5186912617221 C784.3616186983197,754.5186912617219 767.4193922119489,691.4485977272334 767.4193922119489,691.4485977272334 Z" fill="#e7cc6e"/>
20
+
</g>
21
+
<g>
22
+
<path d="M689.6329435194216,826.1892520963697 C689.6329435194216,826.1892520963697 1358.3670564805561,826.1892520963695 1358.3670564805561,826.1892520963695 C1358.3670564805561,826.1892520963695 1336.2885274392868,889.2593456308587 1336.2885274392868,889.2593456308587 C1336.2885274392868,889.2593456308587 711.7114725606916,889.2593456308589 711.7114725606916,889.2593456308589 C711.7114725606916,889.2593456308589 689.6329435194216,826.1892520963697 689.6329435194216,826.1892520963697 Z" fill="#e7cc6e"/>
23
+
</g>
24
+
<g>
25
+
<path d="M633.2521023295001,960.929906465504 C633.2521023295001,960.929906465504 1414.7478976704751,960.9299064655036 1414.7478976704751,960.9299064655036 C1414.7478976704751,960.9299064655036 1388.9464957700027,1023.9999999999934 1388.9464957700027,1023.9999999999934 C1388.9464957700027,1023.9999999999934 659.0535042299734,1023.9999999999936 659.0535042299734,1023.9999999999936 C659.0535042299734,1023.9999999999936 633.2521023295001,960.929906465504 633.2521023295001,960.929906465504 Z" fill="#e7cc6e"/>
26
+
</g>
27
+
</g>
28
+
</g>
29
+
</g>
30
+
</g></g></svg>
+3
packetmix/systems/teal/wiki/icon.svg.license
+3
packetmix/systems/teal/wiki/icon.svg.license
+24
packetmix/systems/teal/wiki.nix
+24
packetmix/systems/teal/wiki.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
# SPDX-FileCopyrightText: 2026 Collabora Productivity Limited
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
6
+
{
7
+
services.headscale.settings.dns.extra_records = [
8
+
{
9
+
# wiki.freshly.space -> teal
10
+
name = "wiki.freshly.space";
11
+
type = "A";
12
+
value = "100.64.0.5";
13
+
}
14
+
];
15
+
16
+
ingredient.wiki.wiki = {
17
+
hostname = "wiki.freshly.space";
18
+
email = "wiki@freshly.space";
19
+
enablePublicInternet = true;
20
+
enableAutoRegistration = true;
21
+
favicon = ./wiki/favicon.ico;
22
+
icon = ./wiki/icon.svg;
23
+
};
24
+
}
+20
packetmix/systems/umber/acme.nix
+20
packetmix/systems/umber/acme.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
security.acme = {
7
+
acceptTerms = true;
8
+
defaults = {
9
+
email = "acme@starrysky.fyi";
10
+
dnsProvider = "cloudflare";
11
+
environmentFile = "/secrets/acme/environmentFile";
12
+
extraLegoFlags = [
13
+
"--dns.resolvers"
14
+
"1.1.1.1"
15
+
];
16
+
};
17
+
};
18
+
19
+
clicks.storage.impermanence.persist.directories = [ "/var/lib/acme" ];
20
+
}
+26
packetmix/systems/umber/auto-shutdown.nix
+26
packetmix/systems/umber/auto-shutdown.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, ... }:
6
+
{
7
+
systemd.timers."auto-shutdown" = {
8
+
wantedBy = [ "timers.target" ];
9
+
timerConfig = {
10
+
OnCalendar = "* *-*-* 23:55:00 Etc/UTC";
11
+
Persistent = false;
12
+
Unit = "auto-shutdown.service";
13
+
};
14
+
};
15
+
16
+
systemd.services."auto-shutdown" = {
17
+
script = ''
18
+
${pkgs.systemd}/bin/systemctl poweroff
19
+
'';
20
+
serviceConfig = {
21
+
RemainAfterExit = true;
22
+
Type = "oneshot";
23
+
User = "root";
24
+
};
25
+
};
26
+
}
+138
packetmix/systems/umber/copyparty.nix
+138
packetmix/systems/umber/copyparty.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
project,
7
+
pkgs,
8
+
config,
9
+
lib,
10
+
...
11
+
}:
12
+
{
13
+
imports = [
14
+
project.inputs.copyparty.result.nixosModules.default
15
+
];
16
+
17
+
config = {
18
+
nixpkgs.overlays = [ project.inputs.copyparty.result.overlays.default ];
19
+
20
+
services.copyparty =
21
+
let
22
+
admins = [
23
+
"minion"
24
+
];
25
+
in
26
+
{
27
+
enable = true;
28
+
29
+
settings = {
30
+
i = "127.0.0.1"; # ip
31
+
p = 1030; # port
32
+
33
+
# we'll be using nginx for this...
34
+
http-only = true;
35
+
no-crt = true;
36
+
37
+
idp-store = 3;
38
+
idp-h-usr = "X-Webauth-Login";
39
+
idp-adm = admins;
40
+
have-idp-hdrs = 1; # https://github.com/9001/copyparty/issues/849
41
+
42
+
shr = "/share";
43
+
shr-db = "/var/lib/copyparty/shares.db";
44
+
shr-adm = admins;
45
+
46
+
# as we might have private directories, better to be a bit conservative about permissions...
47
+
chmod-f = 700;
48
+
chmod-d = 700;
49
+
50
+
magic = true; # "enable filetype detection on nameless uploads"
51
+
52
+
e2dsa = true; # index files to allow searching, upload undo, etc.
53
+
e2ts = true; # and scan metadata...
54
+
55
+
rss = true; # allow (experimental) rss support -> useful for antennapod/miniflux/co.
56
+
dav-auth = true; # "force auth for all folders" notably "(required by davfs2 when only some folders are world-readable)"
57
+
58
+
xvol = true; # don't allow symlinks to break out of confinement...
59
+
no-robots = true; # not really meant to be indexed. Maybe we want to add anubis at some point too...
60
+
61
+
ah-alg = "argon2";
62
+
63
+
spinner = "โญ"; # [hopefully this isn't too boring for you, tripflag](https://github.com/9001/copyparty/tree/hovudstraum/docs/rice#boring-loader-spinner)
64
+
65
+
xm = "aw,f,j,t3600,${project.inputs.copyparty.src}/bin/hooks/wget.py"; # download URLs that are pasted into the message box
66
+
67
+
xff-src = "127.0.0.1";
68
+
rproxy = 1;
69
+
70
+
exp = true;
71
+
};
72
+
73
+
volumes = {
74
+
"/" = {
75
+
path = "/var/lib/copyparty/data";
76
+
77
+
access = {
78
+
r = "*";
79
+
A = admins;
80
+
};
81
+
};
82
+
"/private" = {
83
+
path = "/var/lib/copyparty/private";
84
+
85
+
access = {
86
+
A = [
87
+
"minion"
88
+
];
89
+
};
90
+
};
91
+
};
92
+
};
93
+
94
+
systemd.services.copyparty = {
95
+
path = [ pkgs.wget ]; # Needed for downloading files by URL
96
+
serviceConfig = {
97
+
BindReadOnlyPaths = [
98
+
"/etc/ssl"
99
+
"/etc/static/ssl"
100
+
]; # Required for wget to validate SSL for downloads
101
+
StateDirectory =
102
+
"copyparty "
103
+
+ (lib.pipe config.services.copyparty.volumes [
104
+
builtins.attrValues
105
+
(map (mount: mount.path))
106
+
(map (lib.removePrefix "/var/lib/"))
107
+
(lib.concatStringsSep " ")
108
+
]);
109
+
};
110
+
};
111
+
112
+
services.nginx.enable = true;
113
+
114
+
services.nginx.virtualHosts."copyparty.starrysky.fyi" = {
115
+
serverName = "copyparty.starrysky.fyi";
116
+
117
+
addSSL = true;
118
+
enableACME = true;
119
+
acmeRoot = null;
120
+
121
+
locations."/" = {
122
+
proxyPass = "http://127.0.0.1:1030";
123
+
recommendedProxySettings = true;
124
+
proxyWebsockets = true;
125
+
};
126
+
127
+
extraConfig = ''
128
+
client_max_body_size 1024M;
129
+
'';
130
+
};
131
+
services.nginx.tailscaleAuth = {
132
+
enable = true;
133
+
virtualHosts = [ "copyparty.starrysky.fyi" ];
134
+
};
135
+
136
+
clicks.storage.impermanence.persist.directories = [ "/var/lib/copyparty" ];
137
+
};
138
+
}
+27
packetmix/systems/umber/grocy/custom_js.html
+27
packetmix/systems/umber/grocy/custom_js.html
···
1
+
<!--
2
+
SPDX-FileCopyrightText: 2026 Freshly Baked Cake
3
+
4
+
SPDX-License-Identifier: MIT
5
+
-->
6
+
7
+
<script>
8
+
{
9
+
const locationFilter = document.getElementById("location-filter");
10
+
let desiredLocation = GetUriParam("location");
11
+
if (locationFilter !== null && desiredLocation !== null)
12
+
{
13
+
if (locationFilter.selectedOptions.length === 0 || locationFilter.selectedOptions[0].value === "all") {
14
+
// Don't trigger if we select a different option and refresh the page
15
+
desiredLocation = desiredLocation.replaceAll("_", " ") // WikiText needs underscores to be spaces
16
+
const option = locationFilter.querySelector(`option[value="${desiredLocation}"]`)
17
+
?? locationFilter.querySelector(`option[value^="${desiredLocation}"]`)
18
+
?? locationFilter.querySelector(`option[value*="${desiredLocation}"]`);
19
+
// Search first for an exact match, then a match which starts with, then a match which contains
20
+
if (option) {
21
+
locationFilter.value = option.value;
22
+
locationFilter.dispatchEvent(new Event('change'));
23
+
}
24
+
}
25
+
}
26
+
}
27
+
</script>
+34
packetmix/systems/umber/grocy.nix
+34
packetmix/systems/umber/grocy.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{ pkgs, lib, ... }:
6
+
{
7
+
services.grocy = {
8
+
enable = true;
9
+
package = pkgs.stdenv.mkDerivation {
10
+
name = "grocy-custom-js";
11
+
src = pkgs.grocy;
12
+
13
+
dontBuild = true;
14
+
installPhase = ''
15
+
mkdir -p $out/
16
+
cp -r * $out/
17
+
18
+
mkdir -p $out/data/
19
+
cp ${./grocy/custom_js.html} $out/data/custom_js.html # we need to specify the filename explicitly, as otherwise this'll have a hash
20
+
'';
21
+
};
22
+
hostName = "grocy.starrysky.fyi";
23
+
24
+
settings.currency = "GBP";
25
+
};
26
+
27
+
services.nginx.virtualHosts."grocy.starrysky.fyi" = {
28
+
acmeRoot = null;
29
+
forceSSL = lib.mkForce false;
30
+
onlySSL = true;
31
+
};
32
+
33
+
clicks.storage.impermanence.persist.directories = [ "/var/lib/grocy" ];
34
+
}
+44
packetmix/systems/umber/hardware-configuration.nix
+44
packetmix/systems/umber/hardware-configuration.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
boot.initrd.availableKernelModules = [
7
+
"nvme"
8
+
"xhci_pci"
9
+
"ahci"
10
+
"usbhid"
11
+
"uas"
12
+
"usb_storage"
13
+
"sd_mod"
14
+
];
15
+
boot.initrd.kernelModules = [ ];
16
+
boot.kernelModules = [ "kvm-amd" ];
17
+
boot.extraModulePackages = [ ];
18
+
fileSystems."/nix" = {
19
+
device = "/dev/disk/by-uuid/2b18af0a-1c4f-4195-8f3f-18a1cc987985";
20
+
fsType = "btrfs";
21
+
options = [ "subvol=@nix" ];
22
+
};
23
+
fileSystems."/boot" = {
24
+
device = "/dev/disk/by-uuid/D50D-92FC";
25
+
fsType = "vfat";
26
+
options = [
27
+
"fmask=0022"
28
+
"dmask=0022"
29
+
];
30
+
};
31
+
32
+
boot.swraid.enable = true;
33
+
boot.swraid.mdadmConf = ''
34
+
PROGRAM=true
35
+
''; # Disable reporting for this system
36
+
37
+
clicks.storage.impermanence = {
38
+
enable = true;
39
+
devices = {
40
+
root = "/dev/disk/by-uuid/2b18af0a-1c4f-4195-8f3f-18a1cc987985";
41
+
persist = "/dev/disk/by-uuid/44311fe0-01b9-477b-9626-bf3879bda1da";
42
+
};
43
+
};
44
+
}
+5
packetmix/systems/umber/hostname.nix
+5
packetmix/systems/umber/hostname.nix
+9
packetmix/systems/umber/postgresql.nix
+9
packetmix/systems/umber/postgresql.nix
+7
packetmix/systems/umber/secrets.nix
+7
packetmix/systems/umber/secrets.nix
+63
packetmix/systems/umber/silverbullet.nix
+63
packetmix/systems/umber/silverbullet.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
project,
7
+
system,
8
+
config,
9
+
...
10
+
}:
11
+
{
12
+
clicks.storage.impermanence.persist.directories = [
13
+
{
14
+
directory = config.services.silverbullet.spaceDir;
15
+
mode = "0700";
16
+
defaultPerms.mode = "0700";
17
+
}
18
+
];
19
+
20
+
services.silverbullet = {
21
+
enable = true;
22
+
listenPort = 1024;
23
+
listenAddress = "127.0.0.1";
24
+
package = project.inputs.nixos-unstable.result.${system}.silverbullet;
25
+
};
26
+
27
+
services.nginx.enable = true;
28
+
services.nginx.virtualHosts."silverbullet.starrysky.fyi" = {
29
+
listenAddresses = [ "localhost.tailscale" ];
30
+
31
+
onlySSL = true;
32
+
enableACME = true;
33
+
acmeRoot = null;
34
+
35
+
locations."/" = {
36
+
proxyPass = "http://$silverbullet_upstream_minion_only";
37
+
recommendedProxySettings = true;
38
+
};
39
+
};
40
+
41
+
services.nginx.virtualHosts."silverbullet_access_denied" = {
42
+
listen = [
43
+
{
44
+
addr = "127.0.0.1";
45
+
port = 403;
46
+
}
47
+
];
48
+
locations."/".return =
49
+
''403 "403 - Access Denied: Your device is logged on to tailscale as '$http_x_webauth_user'. Unfortunately, this is a private silverbullet instance for 'minion', please use https://silverbullet.clicks.codes instead"'';
50
+
};
51
+
52
+
services.nginx.commonHttpConfig = ''
53
+
map $auth_user $silverbullet_upstream_minion_only {
54
+
default 127.0.0.1:403;
55
+
minion 127.0.0.1:1024;
56
+
}
57
+
'';
58
+
59
+
services.nginx.tailscaleAuth = {
60
+
enable = true;
61
+
virtualHosts = [ "silverbullet.starrysky.fyi" ];
62
+
};
63
+
}
+13
packetmix/systems/umber/tailscale.nix
+13
packetmix/systems/umber/tailscale.nix
packetmix/systems/umber/wiki/favicon.ico
packetmix/systems/umber/wiki/favicon.ico
This is a binary file and will not be displayed.
+3
packetmix/systems/umber/wiki/favicon.ico.license
+3
packetmix/systems/umber/wiki/favicon.ico.license
+142
packetmix/systems/umber/wiki/icon.svg
+142
packetmix/systems/umber/wiki/icon.svg
···
1
+
<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+
<g clip-path="url(#clip0_403_2)">
3
+
<rect width="100" height="100" rx="50" fill="#030711"/>
4
+
<g clip-path="url(#clip1_403_2)">
5
+
<rect opacity="0.621057" x="4" y="24" width="5" height="5" fill="#F5BDE6"/>
6
+
<rect opacity="0.852238" x="93" y="3" width="5" height="5" fill="#F5BDE6"/>
7
+
<rect opacity="0.216077" x="42" y="88" width="5" height="5" fill="#F5BDE6"/>
8
+
<rect opacity="0.530837" x="99" y="37" width="5" height="5" fill="#F5BDE6"/>
9
+
<rect opacity="0.961511" x="52" y="53" width="5" height="5" fill="#F5BDE6"/>
10
+
<rect opacity="0.579058" x="62" y="81" width="5" height="5" fill="#F5BDE6"/>
11
+
<rect opacity="0.473811" x="52" y="88" width="5" height="5" fill="#F5BDE6"/>
12
+
<rect opacity="0.840787" x="83" y="73" width="5" height="5" fill="#F5BDE6"/>
13
+
<rect opacity="0.598049" x="45" y="73" width="5" height="5" fill="#F5BDE6"/>
14
+
<rect opacity="0.445302" x="77" y="28" width="5" height="5" fill="#F5BDE6"/>
15
+
<rect opacity="0.816334" x="28" y="87" width="5" height="5" fill="#F5BDE6"/>
16
+
<rect opacity="0.733828" x="27" y="50" width="5" height="5" fill="#F5BDE6"/>
17
+
<rect opacity="0.608854" x="38" y="16" width="5" height="5" fill="#F5BDE6"/>
18
+
<rect opacity="0.329103" x="10" y="8" width="5" height="5" fill="#F5BDE6"/>
19
+
<rect opacity="0.533862" x="29" y="15" width="5" height="5" fill="#F5BDE6"/>
20
+
<rect opacity="0.443625" x="95" y="22" width="5" height="5" fill="#F5BDE6"/>
21
+
<rect opacity="0.479166" x="83" y="15" width="5" height="5" fill="#F5BDE6"/>
22
+
<rect opacity="0.32734" x="46" y="81" width="5" height="5" fill="#F5BDE6"/>
23
+
<rect opacity="0.650886" x="27" y="60" width="5" height="5" fill="#F5BDE6"/>
24
+
<rect opacity="0.845287" x="46" y="97" width="5" height="5" fill="#F5BDE6"/>
25
+
<rect opacity="0.606873" x="36" y="41" width="5" height="5" fill="#F5BDE6"/>
26
+
<rect opacity="0.221477" x="36" y="19" width="5" height="5" fill="#F5BDE6"/>
27
+
<rect opacity="0.547727" x="2" y="56" width="5" height="5" fill="#F5BDE6"/>
28
+
<rect opacity="0.292124" x="83" y="73" width="5" height="5" fill="#F5BDE6"/>
29
+
<rect opacity="0.489891" x="65" y="37" width="5" height="5" fill="#F5BDE6"/>
30
+
<rect opacity="0.217084" x="30" y="27" width="5" height="5" fill="#F5BDE6"/>
31
+
<rect opacity="0.490361" x="81" y="65" width="5" height="5" fill="#F5BDE6"/>
32
+
<rect opacity="0.293386" x="10" y="88" width="5" height="5" fill="#F5BDE6"/>
33
+
<rect opacity="0.640141" x="78" y="96" width="5" height="5" fill="#F5BDE6"/>
34
+
<rect opacity="0.857758" x="79" y="93" width="5" height="5" fill="#F5BDE6"/>
35
+
<rect opacity="0.333002" x="2" y="10" width="5" height="5" fill="#F5BDE6"/>
36
+
<rect opacity="0.279611" x="51" y="9" width="5" height="5" fill="#F5BDE6"/>
37
+
<rect opacity="0.292151" x="76" y="7" width="5" height="5" fill="#F5BDE6"/>
38
+
<rect opacity="0.513016" x="1" y="13" width="5" height="5" fill="#F5BDE6"/>
39
+
<rect opacity="0.254339" x="34" y="17" width="5" height="5" fill="#F5BDE6"/>
40
+
<rect opacity="0.284641" x="4" y="59" width="5" height="5" fill="#F5BDE6"/>
41
+
<rect opacity="0.579927" x="89" y="62" width="5" height="5" fill="#F5BDE6"/>
42
+
<rect opacity="0.854369" x="11" y="1" width="5" height="5" fill="#F5BDE6"/>
43
+
<rect opacity="0.703811" x="91" y="86" width="5" height="5" fill="#F5BDE6"/>
44
+
<rect opacity="0.739932" x="67" y="44" width="5" height="5" fill="#F5BDE6"/>
45
+
<rect opacity="0.493849" x="21" y="6" width="5" height="5" fill="#F5BDE6"/>
46
+
<rect opacity="0.88514" x="47" y="38" width="5" height="5" fill="#F5BDE6"/>
47
+
<rect opacity="0.586199" x="99" y="19" width="5" height="5" fill="#F5BDE6"/>
48
+
<rect opacity="0.766144" x="81" y="99" width="5" height="5" fill="#F5BDE6"/>
49
+
<rect opacity="0.717553" x="68" y="93" width="5" height="5" fill="#F5BDE6"/>
50
+
<rect opacity="0.736111" x="65" y="42" width="5" height="5" fill="#F5BDE6"/>
51
+
<rect opacity="0.345391" x="26" y="45" width="5" height="5" fill="#F5BDE6"/>
52
+
<rect opacity="0.542467" x="58" y="51" width="5" height="5" fill="#F5BDE6"/>
53
+
<rect opacity="0.571617" x="49" y="54" width="5" height="5" fill="#F5BDE6"/>
54
+
<rect opacity="0.975175" x="74" y="81" width="5" height="5" fill="#F5BDE6"/>
55
+
<rect opacity="0.725864" x="60" y="80" width="5" height="5" fill="#F5BDE6"/>
56
+
<rect opacity="0.573309" x="3" y="50" width="5" height="5" fill="#F5BDE6"/>
57
+
<rect opacity="0.44939" x="14" y="96" width="5" height="5" fill="#F5BDE6"/>
58
+
<rect opacity="0.444575" x="84" y="42" width="5" height="5" fill="#F5BDE6"/>
59
+
<rect opacity="0.553029" x="58" y="10" width="5" height="5" fill="#F5BDE6"/>
60
+
<rect opacity="0.637627" y="27" width="5" height="5" fill="#F5BDE6"/>
61
+
<rect opacity="0.383483" x="19" y="36" width="5" height="5" fill="#F5BDE6"/>
62
+
<rect opacity="0.436302" x="59" y="33" width="5" height="5" fill="#F5BDE6"/>
63
+
<rect opacity="0.786272" x="9" y="62" width="5" height="5" fill="#F5BDE6"/>
64
+
<rect opacity="0.720444" x="46" y="27" width="5" height="5" fill="#F5BDE6"/>
65
+
<rect opacity="0.524445" x="92" y="19" width="5" height="5" fill="#F5BDE6"/>
66
+
<rect opacity="0.409966" x="90" y="62" width="5" height="5" fill="#F5BDE6"/>
67
+
<rect opacity="0.956206" x="66" y="56" width="5" height="5" fill="#F5BDE6"/>
68
+
<rect opacity="0.678512" x="82" y="65" width="5" height="5" fill="#F5BDE6"/>
69
+
<rect opacity="0.79066" x="80" y="17" width="5" height="5" fill="#F5BDE6"/>
70
+
<rect opacity="0.602691" x="22" y="21" width="5" height="5" fill="#F5BDE6"/>
71
+
<rect opacity="0.848654" x="79" y="65" width="5" height="5" fill="#F5BDE6"/>
72
+
<rect opacity="0.956758" x="31" y="78" width="5" height="5" fill="#F5BDE6"/>
73
+
<rect opacity="0.328654" x="80" y="86" width="5" height="5" fill="#F5BDE6"/>
74
+
<rect opacity="0.565304" x="20" y="62" width="5" height="5" fill="#F5BDE6"/>
75
+
<rect opacity="0.757276" x="20" y="79" width="5" height="5" fill="#F5BDE6"/>
76
+
<rect opacity="0.510643" x="30" y="19" width="5" height="5" fill="#F5BDE6"/>
77
+
<rect opacity="0.246408" x="93" y="64" width="5" height="5" fill="#F5BDE6"/>
78
+
<rect opacity="0.548199" x="4" y="85" width="5" height="5" fill="#F5BDE6"/>
79
+
<rect opacity="0.4696" x="30" y="80" width="5" height="5" fill="#F5BDE6"/>
80
+
<rect opacity="0.755137" x="54" y="36" width="5" height="5" fill="#F5BDE6"/>
81
+
<rect opacity="0.40579" x="98" y="9" width="5" height="5" fill="#F5BDE6"/>
82
+
<rect opacity="0.629922" x="40" y="23" width="5" height="5" fill="#F5BDE6"/>
83
+
<rect opacity="0.440435" x="43" y="75" width="5" height="5" fill="#F5BDE6"/>
84
+
<rect opacity="0.793438" x="72" y="30" width="5" height="5" fill="#F5BDE6"/>
85
+
<rect opacity="0.470026" x="86" y="77" width="5" height="5" fill="#F5BDE6"/>
86
+
<rect opacity="0.538141" x="47" y="62" width="5" height="5" fill="#F5BDE6"/>
87
+
<rect opacity="0.512506" x="55" y="76" width="5" height="5" fill="#F5BDE6"/>
88
+
<rect opacity="0.912024" x="87" y="10" width="5" height="5" fill="#F5BDE6"/>
89
+
<g filter="url(#filter0_dddddd_403_2)">
90
+
<path d="M50 0C50 27.6142 33.2107 50 12.5 50C33.2107 50 50 72.3858 50 100C50 72.3858 66.7893 50 87.5 50C66.7893 50 50 27.6142 50 0Z" fill="#F5BDE6"/>
91
+
</g>
92
+
</g>
93
+
</g>
94
+
<defs>
95
+
<filter id="filter0_dddddd_403_2" x="-7.5" y="-20" width="115" height="140" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
96
+
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
97
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
98
+
<feOffset/>
99
+
<feGaussianBlur stdDeviation="10"/>
100
+
<feComposite in2="hardAlpha" operator="out"/>
101
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
102
+
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_403_2"/>
103
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
104
+
<feOffset/>
105
+
<feGaussianBlur stdDeviation="10"/>
106
+
<feComposite in2="hardAlpha" operator="out"/>
107
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
108
+
<feBlend mode="normal" in2="effect1_dropShadow_403_2" result="effect2_dropShadow_403_2"/>
109
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
110
+
<feOffset/>
111
+
<feGaussianBlur stdDeviation="10"/>
112
+
<feComposite in2="hardAlpha" operator="out"/>
113
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
114
+
<feBlend mode="normal" in2="effect2_dropShadow_403_2" result="effect3_dropShadow_403_2"/>
115
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
116
+
<feOffset/>
117
+
<feGaussianBlur stdDeviation="10"/>
118
+
<feComposite in2="hardAlpha" operator="out"/>
119
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
120
+
<feBlend mode="normal" in2="effect3_dropShadow_403_2" result="effect4_dropShadow_403_2"/>
121
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
122
+
<feOffset/>
123
+
<feGaussianBlur stdDeviation="10"/>
124
+
<feComposite in2="hardAlpha" operator="out"/>
125
+
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0"/>
126
+
<feBlend mode="normal" in2="effect4_dropShadow_403_2" result="effect5_dropShadow_403_2"/>
127
+
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
128
+
<feOffset/>
129
+
<feGaussianBlur stdDeviation="7.5"/>
130
+
<feComposite in2="hardAlpha" operator="out"/>
131
+
<feColorMatrix type="matrix" values="0 0 0 0 0.960784 0 0 0 0 0.741176 0 0 0 0 0.901961 0 0 0 1 0"/>
132
+
<feBlend mode="normal" in2="effect5_dropShadow_403_2" result="effect6_dropShadow_403_2"/>
133
+
<feBlend mode="normal" in="SourceGraphic" in2="effect6_dropShadow_403_2" result="shape"/>
134
+
</filter>
135
+
<clipPath id="clip0_403_2">
136
+
<rect width="100" height="100" rx="50" fill="white"/>
137
+
</clipPath>
138
+
<clipPath id="clip1_403_2">
139
+
<rect width="100" height="100" fill="white"/>
140
+
</clipPath>
141
+
</defs>
142
+
</svg>
+3
packetmix/systems/umber/wiki/icon.svg.license
+3
packetmix/systems/umber/wiki/icon.svg.license
+13
packetmix/systems/umber/wiki.nix
+13
packetmix/systems/umber/wiki.nix
···
1
+
# SPDX-FileCopyrightText: 2026 Collabora Productivity Limited
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
ingredient.wiki.wiki = {
7
+
name = "Starry Sky Wiki";
8
+
hostname = "wiki.starrysky.fyi";
9
+
email = "wiki@starrysky.fyi";
10
+
favicon = ./wiki/favicon.ico;
11
+
icon = ./wiki/icon.svg;
12
+
};
13
+
}
+2790
packetmix/systems/wiki/wiki/CirrusSearch.composer.lock
+2790
packetmix/systems/wiki/wiki/CirrusSearch.composer.lock
···
1
+
{
2
+
"_readme": [
3
+
"This file locks the dependencies of your project to a known state",
4
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+
"This file is @generated automatically"
6
+
],
7
+
"content-hash": "d2a4c732a16c2f1ff8df6d02a986723e",
8
+
"packages": [
9
+
{
10
+
"name": "wikimedia/lucene-explain-parser",
11
+
"version": "2.0.0",
12
+
"source": {
13
+
"type": "git",
14
+
"url": "https://github.com/wikimedia/lucene-explain-parser.git",
15
+
"reference": "82a90019468290a6009a9f61010bd0ffd7e8fc10"
16
+
},
17
+
"dist": {
18
+
"type": "zip",
19
+
"url": "https://api.github.com/repos/wikimedia/lucene-explain-parser/zipball/82a90019468290a6009a9f61010bd0ffd7e8fc10",
20
+
"reference": "82a90019468290a6009a9f61010bd0ffd7e8fc10",
21
+
"shasum": ""
22
+
},
23
+
"require": {
24
+
"php": ">=7.2.9"
25
+
},
26
+
"require-dev": {
27
+
"mediawiki/mediawiki-codesniffer": "38.0.0",
28
+
"mediawiki/mediawiki-phan-config": "0.11.1",
29
+
"mediawiki/minus-x": "1.1.1",
30
+
"ockcyp/covers-validator": "1.3.3",
31
+
"php-parallel-lint/php-console-highlighter": "0.5.0",
32
+
"php-parallel-lint/php-parallel-lint": "1.3.1",
33
+
"phpunit/phpunit": "^8.5"
34
+
},
35
+
"type": "library",
36
+
"autoload": {
37
+
"psr-4": {
38
+
"LuceneExplain\\": "src/"
39
+
}
40
+
},
41
+
"notification-url": "https://packagist.org/downloads/",
42
+
"license": [
43
+
"Apache-2.0"
44
+
],
45
+
"authors": [
46
+
{
47
+
"name": "Erik Bernhardson",
48
+
"email": "ebernhardson@wikimedia.org"
49
+
},
50
+
{
51
+
"name": "Stanislav Malyshev",
52
+
"email": "smalyshev@wikimedia.org"
53
+
}
54
+
],
55
+
"description": "Parsing and pretty-printing Lucene explain data",
56
+
"support": {
57
+
"source": "https://github.com/wikimedia/lucene-explain-parser/tree/2.0.0"
58
+
},
59
+
"time": "2022-03-15T17:12:09+00:00"
60
+
},
61
+
{
62
+
"name": "wikimedia/textcat",
63
+
"version": "2.0.0",
64
+
"source": {
65
+
"type": "git",
66
+
"url": "https://github.com/wikimedia/textcat.git",
67
+
"reference": "dfdfb1c41bb016814a9d4da3aa68b62437b54a82"
68
+
},
69
+
"dist": {
70
+
"type": "zip",
71
+
"url": "https://api.github.com/repos/wikimedia/textcat/zipball/dfdfb1c41bb016814a9d4da3aa68b62437b54a82",
72
+
"reference": "dfdfb1c41bb016814a9d4da3aa68b62437b54a82",
73
+
"shasum": ""
74
+
},
75
+
"require": {
76
+
"php": ">=7.2.9"
77
+
},
78
+
"require-dev": {
79
+
"mediawiki/mediawiki-codesniffer": "38.0.0",
80
+
"mediawiki/mediawiki-phan-config": "0.11.1",
81
+
"mediawiki/minus-x": "1.1.1",
82
+
"ockcyp/covers-validator": "1.3.3",
83
+
"php-parallel-lint/php-console-highlighter": "0.5.0",
84
+
"php-parallel-lint/php-parallel-lint": "1.3.1",
85
+
"phpunit/phpunit": "^8.5"
86
+
},
87
+
"type": "library",
88
+
"autoload": {
89
+
"psr-0": {
90
+
"TextCat": "src/"
91
+
}
92
+
},
93
+
"notification-url": "https://packagist.org/downloads/",
94
+
"license": [
95
+
"LGPL-2.1-only"
96
+
],
97
+
"authors": [
98
+
{
99
+
"name": "Trey Jones",
100
+
"email": "tjones@wikimedia.org"
101
+
},
102
+
{
103
+
"name": "Stanislav Malyshev",
104
+
"email": "smalyshev@wikimedia.org"
105
+
}
106
+
],
107
+
"description": "PHP port of the TextCat language guesser utility, see http://odur.let.rug.nl/~vannoord/TextCat/.",
108
+
"homepage": "https://www.mediawiki.org/wiki/TextCat",
109
+
"support": {
110
+
"source": "https://github.com/wikimedia/textcat/tree/2.0.0"
111
+
},
112
+
"time": "2022-03-15T15:54:48+00:00"
113
+
}
114
+
],
115
+
"packages-dev": [
116
+
{
117
+
"name": "composer/pcre",
118
+
"version": "dev-main",
119
+
"source": {
120
+
"type": "git",
121
+
"url": "https://github.com/composer/pcre.git",
122
+
"reference": "cc69ce9877ca31cb8fb3e87cb89792f2c139f87b"
123
+
},
124
+
"dist": {
125
+
"type": "zip",
126
+
"url": "https://api.github.com/repos/composer/pcre/zipball/cc69ce9877ca31cb8fb3e87cb89792f2c139f87b",
127
+
"reference": "cc69ce9877ca31cb8fb3e87cb89792f2c139f87b",
128
+
"shasum": ""
129
+
},
130
+
"require": {
131
+
"php": "^7.4 || ^8.0"
132
+
},
133
+
"conflict": {
134
+
"phpstan/phpstan": "<1.11.10"
135
+
},
136
+
"require-dev": {
137
+
"phpstan/phpstan": "^1.12 || ^2",
138
+
"phpstan/phpstan-deprecation-rules": "^1 || ^2",
139
+
"phpstan/phpstan-strict-rules": "^1 || ^2",
140
+
"phpunit/phpunit": "^8 || ^9"
141
+
},
142
+
"default-branch": true,
143
+
"type": "library",
144
+
"extra": {
145
+
"phpstan": {
146
+
"includes": [
147
+
"extension.neon"
148
+
]
149
+
},
150
+
"branch-alias": {
151
+
"dev-main": "3.x-dev"
152
+
}
153
+
},
154
+
"autoload": {
155
+
"psr-4": {
156
+
"Composer\\Pcre\\": "src"
157
+
}
158
+
},
159
+
"notification-url": "https://packagist.org/downloads/",
160
+
"license": [
161
+
"MIT"
162
+
],
163
+
"authors": [
164
+
{
165
+
"name": "Jordi Boggiano",
166
+
"email": "j.boggiano@seld.be",
167
+
"homepage": "http://seld.be"
168
+
}
169
+
],
170
+
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
171
+
"keywords": [
172
+
"PCRE",
173
+
"preg",
174
+
"regex",
175
+
"regular expression"
176
+
],
177
+
"support": {
178
+
"issues": "https://github.com/composer/pcre/issues",
179
+
"source": "https://github.com/composer/pcre/tree/main"
180
+
},
181
+
"funding": [
182
+
{
183
+
"url": "https://packagist.com",
184
+
"type": "custom"
185
+
},
186
+
{
187
+
"url": "https://github.com/composer",
188
+
"type": "github"
189
+
}
190
+
],
191
+
"time": "2025-12-03T10:22:10+00:00"
192
+
},
193
+
{
194
+
"name": "composer/semver",
195
+
"version": "dev-main",
196
+
"source": {
197
+
"type": "git",
198
+
"url": "https://github.com/composer/semver.git",
199
+
"reference": "38ccbbfd0098b205e4d947f18e3f1f321803b067"
200
+
},
201
+
"dist": {
202
+
"type": "zip",
203
+
"url": "https://api.github.com/repos/composer/semver/zipball/38ccbbfd0098b205e4d947f18e3f1f321803b067",
204
+
"reference": "38ccbbfd0098b205e4d947f18e3f1f321803b067",
205
+
"shasum": ""
206
+
},
207
+
"require": {
208
+
"php": "^5.3.2 || ^7.0 || ^8.0"
209
+
},
210
+
"require-dev": {
211
+
"phpstan/phpstan": "^1.11",
212
+
"symfony/phpunit-bridge": "^3 || ^7"
213
+
},
214
+
"default-branch": true,
215
+
"type": "library",
216
+
"extra": {
217
+
"branch-alias": {
218
+
"dev-main": "3.x-dev"
219
+
}
220
+
},
221
+
"autoload": {
222
+
"psr-4": {
223
+
"Composer\\Semver\\": "src"
224
+
}
225
+
},
226
+
"notification-url": "https://packagist.org/downloads/",
227
+
"license": [
228
+
"MIT"
229
+
],
230
+
"authors": [
231
+
{
232
+
"name": "Nils Adermann",
233
+
"email": "naderman@naderman.de",
234
+
"homepage": "http://www.naderman.de"
235
+
},
236
+
{
237
+
"name": "Jordi Boggiano",
238
+
"email": "j.boggiano@seld.be",
239
+
"homepage": "http://seld.be"
240
+
},
241
+
{
242
+
"name": "Rob Bast",
243
+
"email": "rob.bast@gmail.com",
244
+
"homepage": "http://robbast.nl"
245
+
}
246
+
],
247
+
"description": "Version comparison library that offers utilities, version constraint parsing and validation.",
248
+
"keywords": [
249
+
"semantic",
250
+
"semver",
251
+
"validation",
252
+
"versioning"
253
+
],
254
+
"support": {
255
+
"irc": "ircs://irc.libera.chat:6697/composer",
256
+
"issues": "https://github.com/composer/semver/issues",
257
+
"source": "https://github.com/composer/semver/tree/main"
258
+
},
259
+
"funding": [
260
+
{
261
+
"url": "https://packagist.com",
262
+
"type": "custom"
263
+
},
264
+
{
265
+
"url": "https://github.com/composer",
266
+
"type": "github"
267
+
}
268
+
],
269
+
"time": "2025-12-03T10:22:06+00:00"
270
+
},
271
+
{
272
+
"name": "composer/spdx-licenses",
273
+
"version": "1.5.9",
274
+
"source": {
275
+
"type": "git",
276
+
"url": "https://github.com/composer/spdx-licenses.git",
277
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f"
278
+
},
279
+
"dist": {
280
+
"type": "zip",
281
+
"url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f",
282
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f",
283
+
"shasum": ""
284
+
},
285
+
"require": {
286
+
"php": "^5.3.2 || ^7.0 || ^8.0"
287
+
},
288
+
"require-dev": {
289
+
"phpstan/phpstan": "^1.11",
290
+
"symfony/phpunit-bridge": "^3 || ^7"
291
+
},
292
+
"type": "library",
293
+
"extra": {
294
+
"branch-alias": {
295
+
"dev-main": "1.x-dev"
296
+
}
297
+
},
298
+
"autoload": {
299
+
"psr-4": {
300
+
"Composer\\Spdx\\": "src"
301
+
}
302
+
},
303
+
"notification-url": "https://packagist.org/downloads/",
304
+
"license": [
305
+
"MIT"
306
+
],
307
+
"authors": [
308
+
{
309
+
"name": "Nils Adermann",
310
+
"email": "naderman@naderman.de",
311
+
"homepage": "http://www.naderman.de"
312
+
},
313
+
{
314
+
"name": "Jordi Boggiano",
315
+
"email": "j.boggiano@seld.be",
316
+
"homepage": "http://seld.be"
317
+
},
318
+
{
319
+
"name": "Rob Bast",
320
+
"email": "rob.bast@gmail.com",
321
+
"homepage": "http://robbast.nl"
322
+
}
323
+
],
324
+
"description": "SPDX licenses list and validation library.",
325
+
"keywords": [
326
+
"license",
327
+
"spdx",
328
+
"validator"
329
+
],
330
+
"support": {
331
+
"irc": "ircs://irc.libera.chat:6697/composer",
332
+
"issues": "https://github.com/composer/spdx-licenses/issues",
333
+
"source": "https://github.com/composer/spdx-licenses/tree/1.5.9"
334
+
},
335
+
"funding": [
336
+
{
337
+
"url": "https://packagist.com",
338
+
"type": "custom"
339
+
},
340
+
{
341
+
"url": "https://github.com/composer",
342
+
"type": "github"
343
+
},
344
+
{
345
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
346
+
"type": "tidelift"
347
+
}
348
+
],
349
+
"time": "2025-05-12T21:07:07+00:00"
350
+
},
351
+
{
352
+
"name": "composer/xdebug-handler",
353
+
"version": "3.0.5",
354
+
"source": {
355
+
"type": "git",
356
+
"url": "https://github.com/composer/xdebug-handler.git",
357
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
358
+
},
359
+
"dist": {
360
+
"type": "zip",
361
+
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
362
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
363
+
"shasum": ""
364
+
},
365
+
"require": {
366
+
"composer/pcre": "^1 || ^2 || ^3",
367
+
"php": "^7.2.5 || ^8.0",
368
+
"psr/log": "^1 || ^2 || ^3"
369
+
},
370
+
"require-dev": {
371
+
"phpstan/phpstan": "^1.0",
372
+
"phpstan/phpstan-strict-rules": "^1.1",
373
+
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
374
+
},
375
+
"type": "library",
376
+
"autoload": {
377
+
"psr-4": {
378
+
"Composer\\XdebugHandler\\": "src"
379
+
}
380
+
},
381
+
"notification-url": "https://packagist.org/downloads/",
382
+
"license": [
383
+
"MIT"
384
+
],
385
+
"authors": [
386
+
{
387
+
"name": "John Stevenson",
388
+
"email": "john-stevenson@blueyonder.co.uk"
389
+
}
390
+
],
391
+
"description": "Restarts a process without Xdebug.",
392
+
"keywords": [
393
+
"Xdebug",
394
+
"performance"
395
+
],
396
+
"support": {
397
+
"irc": "ircs://irc.libera.chat:6697/composer",
398
+
"issues": "https://github.com/composer/xdebug-handler/issues",
399
+
"source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
400
+
},
401
+
"funding": [
402
+
{
403
+
"url": "https://packagist.com",
404
+
"type": "custom"
405
+
},
406
+
{
407
+
"url": "https://github.com/composer",
408
+
"type": "github"
409
+
},
410
+
{
411
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
412
+
"type": "tidelift"
413
+
}
414
+
],
415
+
"time": "2024-05-06T16:37:16+00:00"
416
+
},
417
+
{
418
+
"name": "dealerdirect/phpcodesniffer-composer-installer",
419
+
"version": "v1.2.0",
420
+
"source": {
421
+
"type": "git",
422
+
"url": "https://github.com/PHPCSStandards/composer-installer.git",
423
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
424
+
},
425
+
"dist": {
426
+
"type": "zip",
427
+
"url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
428
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
429
+
"shasum": ""
430
+
},
431
+
"require": {
432
+
"composer-plugin-api": "^2.2",
433
+
"php": ">=5.4",
434
+
"squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
435
+
},
436
+
"require-dev": {
437
+
"composer/composer": "^2.2",
438
+
"ext-json": "*",
439
+
"ext-zip": "*",
440
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
441
+
"phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
442
+
"yoast/phpunit-polyfills": "^1.0"
443
+
},
444
+
"type": "composer-plugin",
445
+
"extra": {
446
+
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
447
+
},
448
+
"autoload": {
449
+
"psr-4": {
450
+
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
451
+
}
452
+
},
453
+
"notification-url": "https://packagist.org/downloads/",
454
+
"license": [
455
+
"MIT"
456
+
],
457
+
"authors": [
458
+
{
459
+
"name": "Franck Nijhof",
460
+
"email": "opensource@frenck.dev",
461
+
"homepage": "https://frenck.dev",
462
+
"role": "Open source developer"
463
+
},
464
+
{
465
+
"name": "Contributors",
466
+
"homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
467
+
}
468
+
],
469
+
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
470
+
"keywords": [
471
+
"PHPCodeSniffer",
472
+
"PHP_CodeSniffer",
473
+
"code quality",
474
+
"codesniffer",
475
+
"composer",
476
+
"installer",
477
+
"phpcbf",
478
+
"phpcs",
479
+
"plugin",
480
+
"qa",
481
+
"quality",
482
+
"standard",
483
+
"standards",
484
+
"style guide",
485
+
"stylecheck",
486
+
"tests"
487
+
],
488
+
"support": {
489
+
"issues": "https://github.com/PHPCSStandards/composer-installer/issues",
490
+
"security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
491
+
"source": "https://github.com/PHPCSStandards/composer-installer"
492
+
},
493
+
"funding": [
494
+
{
495
+
"url": "https://github.com/PHPCSStandards",
496
+
"type": "github"
497
+
},
498
+
{
499
+
"url": "https://github.com/jrfnl",
500
+
"type": "github"
501
+
},
502
+
{
503
+
"url": "https://opencollective.com/php_codesniffer",
504
+
"type": "open_collective"
505
+
},
506
+
{
507
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
508
+
"type": "thanks_dev"
509
+
}
510
+
],
511
+
"time": "2025-11-11T04:32:07+00:00"
512
+
},
513
+
{
514
+
"name": "doctrine/deprecations",
515
+
"version": "1.1.x-dev",
516
+
"source": {
517
+
"type": "git",
518
+
"url": "https://github.com/doctrine/deprecations.git",
519
+
"reference": "ffa29dc95e857426d6e7fdd5078b71bc647be327"
520
+
},
521
+
"dist": {
522
+
"type": "zip",
523
+
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/ffa29dc95e857426d6e7fdd5078b71bc647be327",
524
+
"reference": "ffa29dc95e857426d6e7fdd5078b71bc647be327",
525
+
"shasum": ""
526
+
},
527
+
"require": {
528
+
"php": "^7.1 || ^8.0"
529
+
},
530
+
"conflict": {
531
+
"phpunit/phpunit": "<=7.5 || >=13"
532
+
},
533
+
"require-dev": {
534
+
"doctrine/coding-standard": "^9 || ^12 || ^14",
535
+
"phpstan/phpstan": "1.4.10 || 2.1.30",
536
+
"phpstan/phpstan-phpunit": "^1.0 || ^2",
537
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4",
538
+
"psr/log": "^1 || ^2 || ^3"
539
+
},
540
+
"suggest": {
541
+
"psr/log": "Allows logging deprecations via PSR-3 logger implementation"
542
+
},
543
+
"default-branch": true,
544
+
"type": "library",
545
+
"autoload": {
546
+
"psr-4": {
547
+
"Doctrine\\Deprecations\\": "src"
548
+
}
549
+
},
550
+
"notification-url": "https://packagist.org/downloads/",
551
+
"license": [
552
+
"MIT"
553
+
],
554
+
"description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
555
+
"homepage": "https://www.doctrine-project.org/",
556
+
"support": {
557
+
"issues": "https://github.com/doctrine/deprecations/issues",
558
+
"source": "https://github.com/doctrine/deprecations/tree/1.1.x"
559
+
},
560
+
"time": "2025-12-15T15:02:56+00:00"
561
+
},
562
+
{
563
+
"name": "felixfbecker/advanced-json-rpc",
564
+
"version": "v3.2.1",
565
+
"source": {
566
+
"type": "git",
567
+
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
568
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
569
+
},
570
+
"dist": {
571
+
"type": "zip",
572
+
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
573
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
574
+
"shasum": ""
575
+
},
576
+
"require": {
577
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
578
+
"php": "^7.1 || ^8.0",
579
+
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
580
+
},
581
+
"require-dev": {
582
+
"phpunit/phpunit": "^7.0 || ^8.0"
583
+
},
584
+
"type": "library",
585
+
"autoload": {
586
+
"psr-4": {
587
+
"AdvancedJsonRpc\\": "lib/"
588
+
}
589
+
},
590
+
"notification-url": "https://packagist.org/downloads/",
591
+
"license": [
592
+
"ISC"
593
+
],
594
+
"authors": [
595
+
{
596
+
"name": "Felix Becker",
597
+
"email": "felix.b@outlook.com"
598
+
}
599
+
],
600
+
"description": "A more advanced JSONRPC implementation",
601
+
"support": {
602
+
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
603
+
"source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
604
+
},
605
+
"time": "2021-06-11T22:34:44+00:00"
606
+
},
607
+
{
608
+
"name": "justinrainbow/json-schema",
609
+
"version": "5.x-dev",
610
+
"source": {
611
+
"type": "git",
612
+
"url": "https://github.com/jsonrainbow/json-schema.git",
613
+
"reference": "b5a44b6391a3bbb75c9f2b73e1ef03d6045e1e20"
614
+
},
615
+
"dist": {
616
+
"type": "zip",
617
+
"url": "https://api.github.com/repos/jsonrainbow/json-schema/zipball/b5a44b6391a3bbb75c9f2b73e1ef03d6045e1e20",
618
+
"reference": "b5a44b6391a3bbb75c9f2b73e1ef03d6045e1e20",
619
+
"shasum": ""
620
+
},
621
+
"require": {
622
+
"php": ">=7.1"
623
+
},
624
+
"require-dev": {
625
+
"friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
626
+
"json-schema/json-schema-test-suite": "1.2.0",
627
+
"phpunit/phpunit": "^4.8.35"
628
+
},
629
+
"bin": [
630
+
"bin/validate-json"
631
+
],
632
+
"type": "library",
633
+
"autoload": {
634
+
"psr-4": {
635
+
"JsonSchema\\": "src/JsonSchema/"
636
+
}
637
+
},
638
+
"notification-url": "https://packagist.org/downloads/",
639
+
"license": [
640
+
"MIT"
641
+
],
642
+
"authors": [
643
+
{
644
+
"name": "Bruno Prieto Reis",
645
+
"email": "bruno.p.reis@gmail.com"
646
+
},
647
+
{
648
+
"name": "Justin Rainbow",
649
+
"email": "justin.rainbow@gmail.com"
650
+
},
651
+
{
652
+
"name": "Igor Wiedler",
653
+
"email": "igor@wiedler.ch"
654
+
},
655
+
{
656
+
"name": "Robert Schรถnthal",
657
+
"email": "seroscho@googlemail.com"
658
+
}
659
+
],
660
+
"description": "A library to validate a json schema.",
661
+
"homepage": "https://github.com/justinrainbow/json-schema",
662
+
"keywords": [
663
+
"json",
664
+
"schema"
665
+
],
666
+
"support": {
667
+
"issues": "https://github.com/jsonrainbow/json-schema/issues",
668
+
"source": "https://github.com/jsonrainbow/json-schema/tree/5.x.x"
669
+
},
670
+
"time": "2025-12-12T08:56:22+00:00"
671
+
},
672
+
{
673
+
"name": "mediawiki/mediawiki-codesniffer",
674
+
"version": "v48.0.0",
675
+
"source": {
676
+
"type": "git",
677
+
"url": "https://github.com/wikimedia/mediawiki-tools-codesniffer.git",
678
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212"
679
+
},
680
+
"dist": {
681
+
"type": "zip",
682
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-codesniffer/zipball/6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
683
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
684
+
"shasum": ""
685
+
},
686
+
"require": {
687
+
"composer/semver": "^3.4.2",
688
+
"composer/spdx-licenses": "~1.5.2",
689
+
"ext-json": "*",
690
+
"ext-mbstring": "*",
691
+
"php": ">=8.1.0",
692
+
"phpcsstandards/phpcsextra": "1.4.0",
693
+
"squizlabs/php_codesniffer": "3.13.2"
694
+
},
695
+
"require-dev": {
696
+
"ext-dom": "*",
697
+
"mediawiki/mediawiki-phan-config": "0.17.0",
698
+
"mediawiki/minus-x": "1.1.3",
699
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
700
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
701
+
"phpunit/phpunit": "9.6.21"
702
+
},
703
+
"type": "phpcodesniffer-standard",
704
+
"autoload": {
705
+
"psr-4": {
706
+
"MediaWiki\\Sniffs\\": "MediaWiki/Sniffs/"
707
+
}
708
+
},
709
+
"notification-url": "https://packagist.org/downloads/",
710
+
"license": [
711
+
"GPL-2.0-or-later"
712
+
],
713
+
"description": "MediaWiki CodeSniffer Standards",
714
+
"homepage": "https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP",
715
+
"keywords": [
716
+
"codesniffer",
717
+
"mediawiki"
718
+
],
719
+
"support": {
720
+
"source": "https://github.com/wikimedia/mediawiki-tools-codesniffer/tree/v48.0.0"
721
+
},
722
+
"time": "2025-09-04T20:12:57+00:00"
723
+
},
724
+
{
725
+
"name": "mediawiki/mediawiki-phan-config",
726
+
"version": "0.17.0",
727
+
"source": {
728
+
"type": "git",
729
+
"url": "https://github.com/wikimedia/mediawiki-tools-phan.git",
730
+
"reference": "5e98f0ae2755650c6bebb682c0fcc06b371745c9"
731
+
},
732
+
"dist": {
733
+
"type": "zip",
734
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-phan/zipball/5e98f0ae2755650c6bebb682c0fcc06b371745c9",
735
+
"reference": "5e98f0ae2755650c6bebb682c0fcc06b371745c9",
736
+
"shasum": ""
737
+
},
738
+
"require": {
739
+
"mediawiki/phan-taint-check-plugin": "7.0.0",
740
+
"phan/phan": "5.5.1",
741
+
"php": ">=8.1.0"
742
+
},
743
+
"require-dev": {
744
+
"mediawiki/mediawiki-codesniffer": "47.0.0",
745
+
"mediawiki/minus-x": "1.1.3",
746
+
"ockcyp/covers-validator": "1.6.0",
747
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
748
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
749
+
"phpunit/phpunit": "9.6.21"
750
+
},
751
+
"type": "library",
752
+
"autoload": {
753
+
"psr-4": {
754
+
"MediaWikiPhanConfig\\": "src/"
755
+
}
756
+
},
757
+
"notification-url": "https://packagist.org/downloads/",
758
+
"license": [
759
+
"GPL-2.0-or-later"
760
+
],
761
+
"authors": [
762
+
{
763
+
"name": "MediaWiki developers",
764
+
"email": "wikitech-l@lists.wikimedia.org"
765
+
}
766
+
],
767
+
"description": "Standard MediaWiki phan configuration",
768
+
"homepage": "https://www.mediawiki.org/wiki/Continuous_integration/Phan",
769
+
"support": {
770
+
"source": "https://github.com/wikimedia/mediawiki-tools-phan/tree/0.17.0"
771
+
},
772
+
"time": "2025-08-07T13:01:24+00:00"
773
+
},
774
+
{
775
+
"name": "mediawiki/minus-x",
776
+
"version": "1.1.3",
777
+
"source": {
778
+
"type": "git",
779
+
"url": "https://github.com/wikimedia/mediawiki-tools-minus-x.git",
780
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd"
781
+
},
782
+
"dist": {
783
+
"type": "zip",
784
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-minus-x/zipball/553f920ad53f78b33ea654f8623c2a50b5ac7efd",
785
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd",
786
+
"shasum": ""
787
+
},
788
+
"require": {
789
+
"php": ">=7.2.9",
790
+
"symfony/console": "^3.3.5 || ^4 || ^5 || ^6 || ^7"
791
+
},
792
+
"require-dev": {
793
+
"mediawiki/mediawiki-codesniffer": "43.0.0",
794
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
795
+
"php-parallel-lint/php-parallel-lint": "1.3.2"
796
+
},
797
+
"bin": [
798
+
"bin/minus-x"
799
+
],
800
+
"type": "library",
801
+
"autoload": {
802
+
"psr-4": {
803
+
"MediaWiki\\MinusX\\": "src/"
804
+
}
805
+
},
806
+
"notification-url": "https://packagist.org/downloads/",
807
+
"license": [
808
+
"GPL-3.0-or-later"
809
+
],
810
+
"authors": [
811
+
{
812
+
"name": "Kunal Mehta",
813
+
"email": "legoktm@member.fsf.org"
814
+
}
815
+
],
816
+
"description": "Removes executable bit from files that shouldn't be executable",
817
+
"homepage": "https://www.mediawiki.org/wiki/MinusX",
818
+
"support": {
819
+
"source": "https://github.com/wikimedia/mediawiki-tools-minus-x/tree/1.1.3"
820
+
},
821
+
"time": "2024-05-04T16:06:11+00:00"
822
+
},
823
+
{
824
+
"name": "mediawiki/phan-taint-check-plugin",
825
+
"version": "7.0.0",
826
+
"source": {
827
+
"type": "git",
828
+
"url": "https://github.com/wikimedia/mediawiki-tools-phan-SecurityCheckPlugin.git",
829
+
"reference": "1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55"
830
+
},
831
+
"dist": {
832
+
"type": "zip",
833
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-phan-SecurityCheckPlugin/zipball/1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55",
834
+
"reference": "1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55",
835
+
"shasum": ""
836
+
},
837
+
"require": {
838
+
"ext-json": "*",
839
+
"phan/phan": "5.5.1",
840
+
"php": ">=8.1.0"
841
+
},
842
+
"require-dev": {
843
+
"ext-pdo": "*",
844
+
"mediawiki/mediawiki-codesniffer": "47.0.0",
845
+
"mediawiki/minus-x": "1.1.3",
846
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
847
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
848
+
"phpunit/phpunit": "9.6.21"
849
+
},
850
+
"suggest": {
851
+
"ext-mysqli": "Used for some mysqli function tests"
852
+
},
853
+
"bin": [
854
+
"scripts/seccheck"
855
+
],
856
+
"type": "library",
857
+
"autoload": {
858
+
"psr-4": {
859
+
"SecurityCheckPlugin\\": "src/"
860
+
}
861
+
},
862
+
"notification-url": "https://packagist.org/downloads/",
863
+
"license": [
864
+
"GPL-2.0-or-later"
865
+
],
866
+
"authors": [
867
+
{
868
+
"name": "Brian Wolff",
869
+
"email": "bawolff+wn@gmail.com"
870
+
},
871
+
{
872
+
"name": "Daimona Eaytoy",
873
+
"email": "daimona.wiki@gmail.com"
874
+
}
875
+
],
876
+
"description": "A Phan plugin to do security checking",
877
+
"keywords": [
878
+
"analyzer",
879
+
"phan",
880
+
"php",
881
+
"security",
882
+
"static",
883
+
"taint"
884
+
],
885
+
"support": {
886
+
"irc": "irc://irc.libera.chat/wikimedia-dev",
887
+
"issues": "https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=securitycheckplugin",
888
+
"source": "https://phabricator.wikimedia.org/diffusion/MTPS/",
889
+
"wiki": "https://www.mediawiki.org/wiki/SecurityCheckPlugin"
890
+
},
891
+
"time": "2025-08-07T00:01:54+00:00"
892
+
},
893
+
{
894
+
"name": "microsoft/tolerant-php-parser",
895
+
"version": "v0.1.2",
896
+
"source": {
897
+
"type": "git",
898
+
"url": "https://github.com/microsoft/tolerant-php-parser.git",
899
+
"reference": "3eccfd273323aaf69513e2f1c888393f5947804b"
900
+
},
901
+
"dist": {
902
+
"type": "zip",
903
+
"url": "https://api.github.com/repos/microsoft/tolerant-php-parser/zipball/3eccfd273323aaf69513e2f1c888393f5947804b",
904
+
"reference": "3eccfd273323aaf69513e2f1c888393f5947804b",
905
+
"shasum": ""
906
+
},
907
+
"require": {
908
+
"php": ">=7.2"
909
+
},
910
+
"require-dev": {
911
+
"phpunit/phpunit": "^8.5.15"
912
+
},
913
+
"type": "library",
914
+
"autoload": {
915
+
"psr-4": {
916
+
"Microsoft\\PhpParser\\": [
917
+
"src/"
918
+
]
919
+
}
920
+
},
921
+
"notification-url": "https://packagist.org/downloads/",
922
+
"license": [
923
+
"MIT"
924
+
],
925
+
"authors": [
926
+
{
927
+
"name": "Rob Lourens",
928
+
"email": "roblou@microsoft.com"
929
+
}
930
+
],
931
+
"description": "Tolerant PHP-to-AST parser designed for IDE usage scenarios",
932
+
"support": {
933
+
"issues": "https://github.com/microsoft/tolerant-php-parser/issues",
934
+
"source": "https://github.com/microsoft/tolerant-php-parser/tree/v0.1.2"
935
+
},
936
+
"time": "2022-10-05T17:30:19+00:00"
937
+
},
938
+
{
939
+
"name": "netresearch/jsonmapper",
940
+
"version": "v4.5.0",
941
+
"source": {
942
+
"type": "git",
943
+
"url": "https://github.com/cweiske/jsonmapper.git",
944
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5"
945
+
},
946
+
"dist": {
947
+
"type": "zip",
948
+
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
949
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
950
+
"shasum": ""
951
+
},
952
+
"require": {
953
+
"ext-json": "*",
954
+
"ext-pcre": "*",
955
+
"ext-reflection": "*",
956
+
"ext-spl": "*",
957
+
"php": ">=7.1"
958
+
},
959
+
"require-dev": {
960
+
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
961
+
"squizlabs/php_codesniffer": "~3.5"
962
+
},
963
+
"type": "library",
964
+
"autoload": {
965
+
"psr-0": {
966
+
"JsonMapper": "src/"
967
+
}
968
+
},
969
+
"notification-url": "https://packagist.org/downloads/",
970
+
"license": [
971
+
"OSL-3.0"
972
+
],
973
+
"authors": [
974
+
{
975
+
"name": "Christian Weiske",
976
+
"email": "cweiske@cweiske.de",
977
+
"homepage": "http://github.com/cweiske/jsonmapper/",
978
+
"role": "Developer"
979
+
}
980
+
],
981
+
"description": "Map nested JSON structures onto PHP classes",
982
+
"support": {
983
+
"email": "cweiske@cweiske.de",
984
+
"issues": "https://github.com/cweiske/jsonmapper/issues",
985
+
"source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0"
986
+
},
987
+
"time": "2024-09-08T10:13:13+00:00"
988
+
},
989
+
{
990
+
"name": "phan/phan",
991
+
"version": "5.5.1",
992
+
"source": {
993
+
"type": "git",
994
+
"url": "https://github.com/phan/phan.git",
995
+
"reference": "2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c"
996
+
},
997
+
"dist": {
998
+
"type": "zip",
999
+
"url": "https://api.github.com/repos/phan/phan/zipball/2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c",
1000
+
"reference": "2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c",
1001
+
"shasum": ""
1002
+
},
1003
+
"require": {
1004
+
"composer/semver": "^1.4|^2.0|^3.0",
1005
+
"composer/xdebug-handler": "^2.0|^3.0",
1006
+
"ext-filter": "*",
1007
+
"ext-json": "*",
1008
+
"ext-tokenizer": "*",
1009
+
"felixfbecker/advanced-json-rpc": "^3.0.4",
1010
+
"microsoft/tolerant-php-parser": "0.1.2",
1011
+
"netresearch/jsonmapper": "^1.6.0|^2.0|^3.0|^4.0|^5.0",
1012
+
"php": "^7.2.0|^8.0.0",
1013
+
"sabre/event": "^5.1.3",
1014
+
"symfony/console": "^3.2|^4.0|^5.0|^6.0|^7.0",
1015
+
"symfony/polyfill-mbstring": "^1.11.0",
1016
+
"symfony/polyfill-php80": "^1.20.0",
1017
+
"tysonandre/var_representation_polyfill": "^0.0.2|^0.1.0"
1018
+
},
1019
+
"require-dev": {
1020
+
"phpunit/phpunit": "^8.5.0"
1021
+
},
1022
+
"suggest": {
1023
+
"ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed, 1.0.16+ is recommended.",
1024
+
"ext-iconv": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
1025
+
"ext-igbinary": "Improves performance of polyfill when ext-ast is unavailable",
1026
+
"ext-mbstring": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
1027
+
"ext-tokenizer": "Needed for fallback/polyfill parser support and file/line-based suppressions.",
1028
+
"ext-var_representation": "Suggested for converting values to strings in issue messages"
1029
+
},
1030
+
"bin": [
1031
+
"phan",
1032
+
"phan_client",
1033
+
"tocheckstyle"
1034
+
],
1035
+
"type": "project",
1036
+
"autoload": {
1037
+
"psr-4": {
1038
+
"Phan\\": "src/Phan"
1039
+
}
1040
+
},
1041
+
"notification-url": "https://packagist.org/downloads/",
1042
+
"license": [
1043
+
"MIT"
1044
+
],
1045
+
"authors": [
1046
+
{
1047
+
"name": "Tyson Andre"
1048
+
},
1049
+
{
1050
+
"name": "Rasmus Lerdorf"
1051
+
},
1052
+
{
1053
+
"name": "Andrew S. Morrison"
1054
+
}
1055
+
],
1056
+
"description": "A static analyzer for PHP",
1057
+
"keywords": [
1058
+
"analyzer",
1059
+
"php",
1060
+
"static",
1061
+
"static analysis"
1062
+
],
1063
+
"support": {
1064
+
"issues": "https://github.com/phan/phan/issues",
1065
+
"source": "https://github.com/phan/phan/tree/5.5.1"
1066
+
},
1067
+
"time": "2025-08-05T20:10:06+00:00"
1068
+
},
1069
+
{
1070
+
"name": "php-parallel-lint/php-console-color",
1071
+
"version": "v1.0.1",
1072
+
"source": {
1073
+
"type": "git",
1074
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
1075
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88"
1076
+
},
1077
+
"dist": {
1078
+
"type": "zip",
1079
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/7adfefd530aa2d7570ba87100a99e2483a543b88",
1080
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88",
1081
+
"shasum": ""
1082
+
},
1083
+
"require": {
1084
+
"php": ">=5.3.2"
1085
+
},
1086
+
"replace": {
1087
+
"jakub-onderka/php-console-color": "*"
1088
+
},
1089
+
"require-dev": {
1090
+
"php-parallel-lint/php-code-style": "^2.0",
1091
+
"php-parallel-lint/php-parallel-lint": "^1.0",
1092
+
"php-parallel-lint/php-var-dump-check": "0.*",
1093
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1094
+
},
1095
+
"type": "library",
1096
+
"autoload": {
1097
+
"psr-4": {
1098
+
"PHP_Parallel_Lint\\PhpConsoleColor\\": "src/"
1099
+
}
1100
+
},
1101
+
"notification-url": "https://packagist.org/downloads/",
1102
+
"license": [
1103
+
"BSD-2-Clause"
1104
+
],
1105
+
"authors": [
1106
+
{
1107
+
"name": "Jakub Onderka",
1108
+
"email": "jakub.onderka@gmail.com"
1109
+
}
1110
+
],
1111
+
"description": "Simple library for creating colored console ouput.",
1112
+
"support": {
1113
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
1114
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/v1.0.1"
1115
+
},
1116
+
"time": "2021-12-25T06:49:29+00:00"
1117
+
},
1118
+
{
1119
+
"name": "php-parallel-lint/php-console-highlighter",
1120
+
"version": "v1.0.0",
1121
+
"source": {
1122
+
"type": "git",
1123
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
1124
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d"
1125
+
},
1126
+
"dist": {
1127
+
"type": "zip",
1128
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/5b4803384d3303cf8e84141039ef56c8a123138d",
1129
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d",
1130
+
"shasum": ""
1131
+
},
1132
+
"require": {
1133
+
"ext-tokenizer": "*",
1134
+
"php": ">=5.3.2",
1135
+
"php-parallel-lint/php-console-color": "^1.0.1"
1136
+
},
1137
+
"replace": {
1138
+
"jakub-onderka/php-console-highlighter": "*"
1139
+
},
1140
+
"require-dev": {
1141
+
"php-parallel-lint/php-code-style": "^2.0",
1142
+
"php-parallel-lint/php-parallel-lint": "^1.0",
1143
+
"php-parallel-lint/php-var-dump-check": "0.*",
1144
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1145
+
},
1146
+
"type": "library",
1147
+
"autoload": {
1148
+
"psr-4": {
1149
+
"PHP_Parallel_Lint\\PhpConsoleHighlighter\\": "src/"
1150
+
}
1151
+
},
1152
+
"notification-url": "https://packagist.org/downloads/",
1153
+
"license": [
1154
+
"MIT"
1155
+
],
1156
+
"authors": [
1157
+
{
1158
+
"name": "Jakub Onderka",
1159
+
"email": "acci@acci.cz",
1160
+
"homepage": "http://www.acci.cz/"
1161
+
}
1162
+
],
1163
+
"description": "Highlight PHP code in terminal",
1164
+
"support": {
1165
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
1166
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/v1.0.0"
1167
+
},
1168
+
"time": "2022-02-18T08:23:19+00:00"
1169
+
},
1170
+
{
1171
+
"name": "php-parallel-lint/php-parallel-lint",
1172
+
"version": "v1.4.0",
1173
+
"source": {
1174
+
"type": "git",
1175
+
"url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
1176
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e"
1177
+
},
1178
+
"dist": {
1179
+
"type": "zip",
1180
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
1181
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e",
1182
+
"shasum": ""
1183
+
},
1184
+
"require": {
1185
+
"ext-json": "*",
1186
+
"php": ">=5.3.0"
1187
+
},
1188
+
"replace": {
1189
+
"grogy/php-parallel-lint": "*",
1190
+
"jakub-onderka/php-parallel-lint": "*"
1191
+
},
1192
+
"require-dev": {
1193
+
"nette/tester": "^1.3 || ^2.0",
1194
+
"php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
1195
+
"squizlabs/php_codesniffer": "^3.6"
1196
+
},
1197
+
"suggest": {
1198
+
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
1199
+
},
1200
+
"bin": [
1201
+
"parallel-lint"
1202
+
],
1203
+
"type": "library",
1204
+
"autoload": {
1205
+
"classmap": [
1206
+
"./src/"
1207
+
]
1208
+
},
1209
+
"notification-url": "https://packagist.org/downloads/",
1210
+
"license": [
1211
+
"BSD-2-Clause"
1212
+
],
1213
+
"authors": [
1214
+
{
1215
+
"name": "Jakub Onderka",
1216
+
"email": "ahoj@jakubonderka.cz"
1217
+
}
1218
+
],
1219
+
"description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
1220
+
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
1221
+
"keywords": [
1222
+
"lint",
1223
+
"static analysis"
1224
+
],
1225
+
"support": {
1226
+
"issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
1227
+
"source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
1228
+
},
1229
+
"time": "2024-03-27T12:14:49+00:00"
1230
+
},
1231
+
{
1232
+
"name": "phpcsstandards/phpcsextra",
1233
+
"version": "1.4.0",
1234
+
"source": {
1235
+
"type": "git",
1236
+
"url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
1237
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca"
1238
+
},
1239
+
"dist": {
1240
+
"type": "zip",
1241
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/fa4b8d051e278072928e32d817456a7fdb57b6ca",
1242
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca",
1243
+
"shasum": ""
1244
+
},
1245
+
"require": {
1246
+
"php": ">=5.4",
1247
+
"phpcsstandards/phpcsutils": "^1.1.0",
1248
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
1249
+
},
1250
+
"require-dev": {
1251
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1252
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
1253
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1254
+
"phpcsstandards/phpcsdevtools": "^1.2.1",
1255
+
"phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1256
+
},
1257
+
"type": "phpcodesniffer-standard",
1258
+
"extra": {
1259
+
"branch-alias": {
1260
+
"dev-stable": "1.x-dev",
1261
+
"dev-develop": "1.x-dev"
1262
+
}
1263
+
},
1264
+
"notification-url": "https://packagist.org/downloads/",
1265
+
"license": [
1266
+
"LGPL-3.0-or-later"
1267
+
],
1268
+
"authors": [
1269
+
{
1270
+
"name": "Juliette Reinders Folmer",
1271
+
"homepage": "https://github.com/jrfnl",
1272
+
"role": "lead"
1273
+
},
1274
+
{
1275
+
"name": "Contributors",
1276
+
"homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
1277
+
}
1278
+
],
1279
+
"description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
1280
+
"keywords": [
1281
+
"PHP_CodeSniffer",
1282
+
"phpcbf",
1283
+
"phpcodesniffer-standard",
1284
+
"phpcs",
1285
+
"standards",
1286
+
"static analysis"
1287
+
],
1288
+
"support": {
1289
+
"issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
1290
+
"security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
1291
+
"source": "https://github.com/PHPCSStandards/PHPCSExtra"
1292
+
},
1293
+
"funding": [
1294
+
{
1295
+
"url": "https://github.com/PHPCSStandards",
1296
+
"type": "github"
1297
+
},
1298
+
{
1299
+
"url": "https://github.com/jrfnl",
1300
+
"type": "github"
1301
+
},
1302
+
{
1303
+
"url": "https://opencollective.com/php_codesniffer",
1304
+
"type": "open_collective"
1305
+
},
1306
+
{
1307
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1308
+
"type": "thanks_dev"
1309
+
}
1310
+
],
1311
+
"time": "2025-06-14T07:40:39+00:00"
1312
+
},
1313
+
{
1314
+
"name": "phpcsstandards/phpcsutils",
1315
+
"version": "1.1.1",
1316
+
"source": {
1317
+
"type": "git",
1318
+
"url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
1319
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd"
1320
+
},
1321
+
"dist": {
1322
+
"type": "zip",
1323
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1324
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1325
+
"shasum": ""
1326
+
},
1327
+
"require": {
1328
+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
1329
+
"php": ">=5.4",
1330
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
1331
+
},
1332
+
"require-dev": {
1333
+
"ext-filter": "*",
1334
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1335
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
1336
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1337
+
"yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
1338
+
},
1339
+
"type": "phpcodesniffer-standard",
1340
+
"extra": {
1341
+
"branch-alias": {
1342
+
"dev-stable": "1.x-dev",
1343
+
"dev-develop": "1.x-dev"
1344
+
}
1345
+
},
1346
+
"autoload": {
1347
+
"classmap": [
1348
+
"PHPCSUtils/"
1349
+
]
1350
+
},
1351
+
"notification-url": "https://packagist.org/downloads/",
1352
+
"license": [
1353
+
"LGPL-3.0-or-later"
1354
+
],
1355
+
"authors": [
1356
+
{
1357
+
"name": "Juliette Reinders Folmer",
1358
+
"homepage": "https://github.com/jrfnl",
1359
+
"role": "lead"
1360
+
},
1361
+
{
1362
+
"name": "Contributors",
1363
+
"homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
1364
+
}
1365
+
],
1366
+
"description": "A suite of utility functions for use with PHP_CodeSniffer",
1367
+
"homepage": "https://phpcsutils.com/",
1368
+
"keywords": [
1369
+
"PHP_CodeSniffer",
1370
+
"phpcbf",
1371
+
"phpcodesniffer-standard",
1372
+
"phpcs",
1373
+
"phpcs3",
1374
+
"phpcs4",
1375
+
"standards",
1376
+
"static analysis",
1377
+
"tokens",
1378
+
"utility"
1379
+
],
1380
+
"support": {
1381
+
"docs": "https://phpcsutils.com/",
1382
+
"issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
1383
+
"security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
1384
+
"source": "https://github.com/PHPCSStandards/PHPCSUtils"
1385
+
},
1386
+
"funding": [
1387
+
{
1388
+
"url": "https://github.com/PHPCSStandards",
1389
+
"type": "github"
1390
+
},
1391
+
{
1392
+
"url": "https://github.com/jrfnl",
1393
+
"type": "github"
1394
+
},
1395
+
{
1396
+
"url": "https://opencollective.com/php_codesniffer",
1397
+
"type": "open_collective"
1398
+
},
1399
+
{
1400
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1401
+
"type": "thanks_dev"
1402
+
}
1403
+
],
1404
+
"time": "2025-08-10T01:04:45+00:00"
1405
+
},
1406
+
{
1407
+
"name": "phpdocumentor/reflection-common",
1408
+
"version": "dev-master",
1409
+
"source": {
1410
+
"type": "git",
1411
+
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
1412
+
"reference": "a0eeab580cbdf4414fef6978732510a36ed0a9d6"
1413
+
},
1414
+
"dist": {
1415
+
"type": "zip",
1416
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/a0eeab580cbdf4414fef6978732510a36ed0a9d6",
1417
+
"reference": "a0eeab580cbdf4414fef6978732510a36ed0a9d6",
1418
+
"shasum": ""
1419
+
},
1420
+
"require": {
1421
+
"php": ">=7.1"
1422
+
},
1423
+
"type": "library",
1424
+
"extra": {
1425
+
"branch-alias": {
1426
+
"dev-master": "2.x-dev"
1427
+
}
1428
+
},
1429
+
"autoload": {
1430
+
"psr-4": {
1431
+
"phpDocumentor\\Reflection\\": "src/"
1432
+
}
1433
+
},
1434
+
"notification-url": "https://packagist.org/downloads/",
1435
+
"license": [
1436
+
"MIT"
1437
+
],
1438
+
"authors": [
1439
+
{
1440
+
"name": "Jaap van Otterdijk",
1441
+
"email": "opensource@ijaap.nl"
1442
+
}
1443
+
],
1444
+
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1445
+
"homepage": "http://www.phpdoc.org",
1446
+
"keywords": [
1447
+
"FQSEN",
1448
+
"phpDocumentor",
1449
+
"phpdoc",
1450
+
"reflection",
1451
+
"static analysis"
1452
+
],
1453
+
"support": {
1454
+
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
1455
+
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/master"
1456
+
},
1457
+
"time": "2021-06-25T13:47:51+00:00"
1458
+
},
1459
+
{
1460
+
"name": "phpdocumentor/reflection-docblock",
1461
+
"version": "5.x-dev",
1462
+
"source": {
1463
+
"type": "git",
1464
+
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1465
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
1466
+
},
1467
+
"dist": {
1468
+
"type": "zip",
1469
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1470
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1471
+
"shasum": ""
1472
+
},
1473
+
"require": {
1474
+
"doctrine/deprecations": "^1.1",
1475
+
"ext-filter": "*",
1476
+
"php": "^7.4 || ^8.0",
1477
+
"phpdocumentor/reflection-common": "^2.2",
1478
+
"phpdocumentor/type-resolver": "^1.7",
1479
+
"phpstan/phpdoc-parser": "^1.7|^2.0",
1480
+
"webmozart/assert": "^1.9.1 || ^2"
1481
+
},
1482
+
"require-dev": {
1483
+
"mockery/mockery": "~1.3.5 || ~1.6.0",
1484
+
"phpstan/extension-installer": "^1.1",
1485
+
"phpstan/phpstan": "^1.8",
1486
+
"phpstan/phpstan-mockery": "^1.1",
1487
+
"phpstan/phpstan-webmozart-assert": "^1.2",
1488
+
"phpunit/phpunit": "^9.5",
1489
+
"psalm/phar": "^5.26"
1490
+
},
1491
+
"default-branch": true,
1492
+
"type": "library",
1493
+
"extra": {
1494
+
"branch-alias": {
1495
+
"dev-master": "5.x-dev"
1496
+
}
1497
+
},
1498
+
"autoload": {
1499
+
"psr-4": {
1500
+
"phpDocumentor\\Reflection\\": "src"
1501
+
}
1502
+
},
1503
+
"notification-url": "https://packagist.org/downloads/",
1504
+
"license": [
1505
+
"MIT"
1506
+
],
1507
+
"authors": [
1508
+
{
1509
+
"name": "Mike van Riel",
1510
+
"email": "me@mikevanriel.com"
1511
+
},
1512
+
{
1513
+
"name": "Jaap van Otterdijk",
1514
+
"email": "opensource@ijaap.nl"
1515
+
}
1516
+
],
1517
+
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
1518
+
"support": {
1519
+
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
1520
+
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
1521
+
},
1522
+
"time": "2025-12-22T21:13:58+00:00"
1523
+
},
1524
+
{
1525
+
"name": "phpdocumentor/type-resolver",
1526
+
"version": "1.x-dev",
1527
+
"source": {
1528
+
"type": "git",
1529
+
"url": "https://github.com/phpDocumentor/TypeResolver.git",
1530
+
"reference": "fb05a34cd192e7987c18c06ef47dce6c2e2ec39f"
1531
+
},
1532
+
"dist": {
1533
+
"type": "zip",
1534
+
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/fb05a34cd192e7987c18c06ef47dce6c2e2ec39f",
1535
+
"reference": "fb05a34cd192e7987c18c06ef47dce6c2e2ec39f",
1536
+
"shasum": ""
1537
+
},
1538
+
"require": {
1539
+
"doctrine/deprecations": "^1.0",
1540
+
"php": "^7.3 || ^8.0",
1541
+
"phpdocumentor/reflection-common": "^2.0",
1542
+
"phpstan/phpdoc-parser": "^1.18|^2.0"
1543
+
},
1544
+
"require-dev": {
1545
+
"ext-tokenizer": "*",
1546
+
"phpbench/phpbench": "^1.2",
1547
+
"phpstan/extension-installer": "^1.1",
1548
+
"phpstan/phpstan": "^1.8",
1549
+
"phpstan/phpstan-phpunit": "^1.1",
1550
+
"phpunit/phpunit": "^9.5",
1551
+
"rector/rector": "^0.13.9",
1552
+
"vimeo/psalm": "^4.25"
1553
+
},
1554
+
"type": "library",
1555
+
"extra": {
1556
+
"branch-alias": {
1557
+
"dev-1.x": "1.x-dev"
1558
+
}
1559
+
},
1560
+
"autoload": {
1561
+
"psr-4": {
1562
+
"phpDocumentor\\Reflection\\": "src"
1563
+
}
1564
+
},
1565
+
"notification-url": "https://packagist.org/downloads/",
1566
+
"license": [
1567
+
"MIT"
1568
+
],
1569
+
"authors": [
1570
+
{
1571
+
"name": "Mike van Riel",
1572
+
"email": "me@mikevanriel.com"
1573
+
}
1574
+
],
1575
+
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
1576
+
"support": {
1577
+
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
1578
+
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.x"
1579
+
},
1580
+
"time": "2025-11-28T09:29:02+00:00"
1581
+
},
1582
+
{
1583
+
"name": "phpstan/phpdoc-parser",
1584
+
"version": "2.3.x-dev",
1585
+
"source": {
1586
+
"type": "git",
1587
+
"url": "https://github.com/phpstan/phpdoc-parser.git",
1588
+
"reference": "bd6f207ffeaf070631f40b04e6c52db5a9348a2c"
1589
+
},
1590
+
"dist": {
1591
+
"type": "zip",
1592
+
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/bd6f207ffeaf070631f40b04e6c52db5a9348a2c",
1593
+
"reference": "bd6f207ffeaf070631f40b04e6c52db5a9348a2c",
1594
+
"shasum": ""
1595
+
},
1596
+
"require": {
1597
+
"php": "^7.4 || ^8.0"
1598
+
},
1599
+
"require-dev": {
1600
+
"doctrine/annotations": "^2.0",
1601
+
"nikic/php-parser": "^5.3.0",
1602
+
"php-parallel-lint/php-parallel-lint": "^1.2",
1603
+
"phpstan/extension-installer": "^1.0",
1604
+
"phpstan/phpstan": "^2.0",
1605
+
"phpstan/phpstan-phpunit": "^2.0",
1606
+
"phpstan/phpstan-strict-rules": "^2.0",
1607
+
"phpunit/phpunit": "^9.6",
1608
+
"symfony/process": "^5.2"
1609
+
},
1610
+
"default-branch": true,
1611
+
"type": "library",
1612
+
"autoload": {
1613
+
"psr-4": {
1614
+
"PHPStan\\PhpDocParser\\": [
1615
+
"src/"
1616
+
]
1617
+
}
1618
+
},
1619
+
"notification-url": "https://packagist.org/downloads/",
1620
+
"license": [
1621
+
"MIT"
1622
+
],
1623
+
"description": "PHPDoc parser with support for nullable, intersection and generic types",
1624
+
"support": {
1625
+
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
1626
+
"source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.x"
1627
+
},
1628
+
"time": "2025-09-06T11:34:09+00:00"
1629
+
},
1630
+
{
1631
+
"name": "psr/container",
1632
+
"version": "dev-master",
1633
+
"source": {
1634
+
"type": "git",
1635
+
"url": "https://github.com/php-fig/container.git",
1636
+
"reference": "707984727bd5b2b670e59559d3ed2500240cf875"
1637
+
},
1638
+
"dist": {
1639
+
"type": "zip",
1640
+
"url": "https://api.github.com/repos/php-fig/container/zipball/707984727bd5b2b670e59559d3ed2500240cf875",
1641
+
"reference": "707984727bd5b2b670e59559d3ed2500240cf875",
1642
+
"shasum": ""
1643
+
},
1644
+
"require": {
1645
+
"php": ">=7.4.0"
1646
+
},
1647
+
"default-branch": true,
1648
+
"type": "library",
1649
+
"extra": {
1650
+
"branch-alias": {
1651
+
"dev-master": "2.0.x-dev"
1652
+
}
1653
+
},
1654
+
"autoload": {
1655
+
"psr-4": {
1656
+
"Psr\\Container\\": "src/"
1657
+
}
1658
+
},
1659
+
"notification-url": "https://packagist.org/downloads/",
1660
+
"license": [
1661
+
"MIT"
1662
+
],
1663
+
"authors": [
1664
+
{
1665
+
"name": "PHP-FIG",
1666
+
"homepage": "https://www.php-fig.org/"
1667
+
}
1668
+
],
1669
+
"description": "Common Container Interface (PHP FIG PSR-11)",
1670
+
"homepage": "https://github.com/php-fig/container",
1671
+
"keywords": [
1672
+
"PSR-11",
1673
+
"container",
1674
+
"container-interface",
1675
+
"container-interop",
1676
+
"psr"
1677
+
],
1678
+
"support": {
1679
+
"issues": "https://github.com/php-fig/container/issues",
1680
+
"source": "https://github.com/php-fig/container"
1681
+
},
1682
+
"time": "2023-09-22T11:11:30+00:00"
1683
+
},
1684
+
{
1685
+
"name": "psr/log",
1686
+
"version": "1.1.4",
1687
+
"source": {
1688
+
"type": "git",
1689
+
"url": "https://github.com/php-fig/log.git",
1690
+
"reference": "d49695b909c3b7628b6289db5479a1c204601f11"
1691
+
},
1692
+
"dist": {
1693
+
"type": "zip",
1694
+
"url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
1695
+
"reference": "d49695b909c3b7628b6289db5479a1c204601f11",
1696
+
"shasum": ""
1697
+
},
1698
+
"require": {
1699
+
"php": ">=5.3.0"
1700
+
},
1701
+
"type": "library",
1702
+
"extra": {
1703
+
"branch-alias": {
1704
+
"dev-master": "1.1.x-dev"
1705
+
}
1706
+
},
1707
+
"autoload": {
1708
+
"psr-4": {
1709
+
"Psr\\Log\\": "Psr/Log/"
1710
+
}
1711
+
},
1712
+
"notification-url": "https://packagist.org/downloads/",
1713
+
"license": [
1714
+
"MIT"
1715
+
],
1716
+
"authors": [
1717
+
{
1718
+
"name": "PHP-FIG",
1719
+
"homepage": "https://www.php-fig.org/"
1720
+
}
1721
+
],
1722
+
"description": "Common interface for logging libraries",
1723
+
"homepage": "https://github.com/php-fig/log",
1724
+
"keywords": [
1725
+
"log",
1726
+
"psr",
1727
+
"psr-3"
1728
+
],
1729
+
"support": {
1730
+
"source": "https://github.com/php-fig/log/tree/1.1.4"
1731
+
},
1732
+
"time": "2021-05-03T11:20:27+00:00"
1733
+
},
1734
+
{
1735
+
"name": "sabre/event",
1736
+
"version": "5.1.x-dev",
1737
+
"source": {
1738
+
"type": "git",
1739
+
"url": "https://github.com/sabre-io/event.git",
1740
+
"reference": "961893bc423fd86816f8d10aee2446352a8ed8ae"
1741
+
},
1742
+
"dist": {
1743
+
"type": "zip",
1744
+
"url": "https://api.github.com/repos/sabre-io/event/zipball/961893bc423fd86816f8d10aee2446352a8ed8ae",
1745
+
"reference": "961893bc423fd86816f8d10aee2446352a8ed8ae",
1746
+
"shasum": ""
1747
+
},
1748
+
"require": {
1749
+
"php": "^7.1 || ^8.0"
1750
+
},
1751
+
"require-dev": {
1752
+
"friendsofphp/php-cs-fixer": "~2.17.1||3.64.0",
1753
+
"phpstan/phpstan": "^0.12",
1754
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
1755
+
},
1756
+
"type": "library",
1757
+
"autoload": {
1758
+
"files": [
1759
+
"lib/coroutine.php",
1760
+
"lib/Loop/functions.php",
1761
+
"lib/Promise/functions.php"
1762
+
],
1763
+
"psr-4": {
1764
+
"Sabre\\Event\\": "lib/"
1765
+
}
1766
+
},
1767
+
"notification-url": "https://packagist.org/downloads/",
1768
+
"license": [
1769
+
"BSD-3-Clause"
1770
+
],
1771
+
"authors": [
1772
+
{
1773
+
"name": "Evert Pot",
1774
+
"email": "me@evertpot.com",
1775
+
"homepage": "http://evertpot.com/",
1776
+
"role": "Developer"
1777
+
}
1778
+
],
1779
+
"description": "sabre/event is a library for lightweight event-based programming",
1780
+
"homepage": "http://sabre.io/event/",
1781
+
"keywords": [
1782
+
"EventEmitter",
1783
+
"async",
1784
+
"coroutine",
1785
+
"eventloop",
1786
+
"events",
1787
+
"hooks",
1788
+
"plugin",
1789
+
"promise",
1790
+
"reactor",
1791
+
"signal"
1792
+
],
1793
+
"support": {
1794
+
"forum": "https://groups.google.com/group/sabredav-discuss",
1795
+
"issues": "https://github.com/sabre-io/event/issues",
1796
+
"source": "https://github.com/fruux/sabre-event"
1797
+
},
1798
+
"time": "2025-12-01T11:35:08+00:00"
1799
+
},
1800
+
{
1801
+
"name": "squizlabs/php_codesniffer",
1802
+
"version": "3.13.2",
1803
+
"source": {
1804
+
"type": "git",
1805
+
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
1806
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
1807
+
},
1808
+
"dist": {
1809
+
"type": "zip",
1810
+
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
1811
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
1812
+
"shasum": ""
1813
+
},
1814
+
"require": {
1815
+
"ext-simplexml": "*",
1816
+
"ext-tokenizer": "*",
1817
+
"ext-xmlwriter": "*",
1818
+
"php": ">=5.4.0"
1819
+
},
1820
+
"require-dev": {
1821
+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1822
+
},
1823
+
"bin": [
1824
+
"bin/phpcbf",
1825
+
"bin/phpcs"
1826
+
],
1827
+
"type": "library",
1828
+
"extra": {
1829
+
"branch-alias": {
1830
+
"dev-master": "3.x-dev"
1831
+
}
1832
+
},
1833
+
"notification-url": "https://packagist.org/downloads/",
1834
+
"license": [
1835
+
"BSD-3-Clause"
1836
+
],
1837
+
"authors": [
1838
+
{
1839
+
"name": "Greg Sherwood",
1840
+
"role": "Former lead"
1841
+
},
1842
+
{
1843
+
"name": "Juliette Reinders Folmer",
1844
+
"role": "Current lead"
1845
+
},
1846
+
{
1847
+
"name": "Contributors",
1848
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
1849
+
}
1850
+
],
1851
+
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1852
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1853
+
"keywords": [
1854
+
"phpcs",
1855
+
"standards",
1856
+
"static analysis"
1857
+
],
1858
+
"support": {
1859
+
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
1860
+
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
1861
+
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1862
+
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
1863
+
},
1864
+
"funding": [
1865
+
{
1866
+
"url": "https://github.com/PHPCSStandards",
1867
+
"type": "github"
1868
+
},
1869
+
{
1870
+
"url": "https://github.com/jrfnl",
1871
+
"type": "github"
1872
+
},
1873
+
{
1874
+
"url": "https://opencollective.com/php_codesniffer",
1875
+
"type": "open_collective"
1876
+
},
1877
+
{
1878
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1879
+
"type": "thanks_dev"
1880
+
}
1881
+
],
1882
+
"time": "2025-06-17T22:17:01+00:00"
1883
+
},
1884
+
{
1885
+
"name": "symfony/console",
1886
+
"version": "7.4.x-dev",
1887
+
"source": {
1888
+
"type": "git",
1889
+
"url": "https://github.com/symfony/console.git",
1890
+
"reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6"
1891
+
},
1892
+
"dist": {
1893
+
"type": "zip",
1894
+
"url": "https://api.github.com/repos/symfony/console/zipball/732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
1895
+
"reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
1896
+
"shasum": ""
1897
+
},
1898
+
"require": {
1899
+
"php": ">=8.2",
1900
+
"symfony/deprecation-contracts": "^2.5|^3",
1901
+
"symfony/polyfill-mbstring": "~1.0",
1902
+
"symfony/service-contracts": "^2.5|^3",
1903
+
"symfony/string": "^7.2|^8.0"
1904
+
},
1905
+
"conflict": {
1906
+
"symfony/dependency-injection": "<6.4",
1907
+
"symfony/dotenv": "<6.4",
1908
+
"symfony/event-dispatcher": "<6.4",
1909
+
"symfony/lock": "<6.4",
1910
+
"symfony/process": "<6.4"
1911
+
},
1912
+
"provide": {
1913
+
"psr/log-implementation": "1.0|2.0|3.0"
1914
+
},
1915
+
"require-dev": {
1916
+
"psr/log": "^1|^2|^3",
1917
+
"symfony/config": "^6.4|^7.0|^8.0",
1918
+
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
1919
+
"symfony/event-dispatcher": "^6.4|^7.0|^8.0",
1920
+
"symfony/http-foundation": "^6.4|^7.0|^8.0",
1921
+
"symfony/http-kernel": "^6.4|^7.0|^8.0",
1922
+
"symfony/lock": "^6.4|^7.0|^8.0",
1923
+
"symfony/messenger": "^6.4|^7.0|^8.0",
1924
+
"symfony/process": "^6.4|^7.0|^8.0",
1925
+
"symfony/stopwatch": "^6.4|^7.0|^8.0",
1926
+
"symfony/var-dumper": "^6.4|^7.0|^8.0"
1927
+
},
1928
+
"type": "library",
1929
+
"autoload": {
1930
+
"psr-4": {
1931
+
"Symfony\\Component\\Console\\": ""
1932
+
},
1933
+
"exclude-from-classmap": [
1934
+
"/Tests/"
1935
+
]
1936
+
},
1937
+
"notification-url": "https://packagist.org/downloads/",
1938
+
"license": [
1939
+
"MIT"
1940
+
],
1941
+
"authors": [
1942
+
{
1943
+
"name": "Fabien Potencier",
1944
+
"email": "fabien@symfony.com"
1945
+
},
1946
+
{
1947
+
"name": "Symfony Community",
1948
+
"homepage": "https://symfony.com/contributors"
1949
+
}
1950
+
],
1951
+
"description": "Eases the creation of beautiful and testable command line interfaces",
1952
+
"homepage": "https://symfony.com",
1953
+
"keywords": [
1954
+
"cli",
1955
+
"command-line",
1956
+
"console",
1957
+
"terminal"
1958
+
],
1959
+
"support": {
1960
+
"source": "https://github.com/symfony/console/tree/7.4"
1961
+
},
1962
+
"funding": [
1963
+
{
1964
+
"url": "https://symfony.com/sponsor",
1965
+
"type": "custom"
1966
+
},
1967
+
{
1968
+
"url": "https://github.com/fabpot",
1969
+
"type": "github"
1970
+
},
1971
+
{
1972
+
"url": "https://github.com/nicolas-grekas",
1973
+
"type": "github"
1974
+
},
1975
+
{
1976
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1977
+
"type": "tidelift"
1978
+
}
1979
+
],
1980
+
"time": "2025-12-23T14:50:43+00:00"
1981
+
},
1982
+
{
1983
+
"name": "symfony/deprecation-contracts",
1984
+
"version": "dev-main",
1985
+
"source": {
1986
+
"type": "git",
1987
+
"url": "https://github.com/symfony/deprecation-contracts.git",
1988
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
1989
+
},
1990
+
"dist": {
1991
+
"type": "zip",
1992
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
1993
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
1994
+
"shasum": ""
1995
+
},
1996
+
"require": {
1997
+
"php": ">=8.1"
1998
+
},
1999
+
"default-branch": true,
2000
+
"type": "library",
2001
+
"extra": {
2002
+
"thanks": {
2003
+
"url": "https://github.com/symfony/contracts",
2004
+
"name": "symfony/contracts"
2005
+
},
2006
+
"branch-alias": {
2007
+
"dev-main": "3.6-dev"
2008
+
}
2009
+
},
2010
+
"autoload": {
2011
+
"files": [
2012
+
"function.php"
2013
+
]
2014
+
},
2015
+
"notification-url": "https://packagist.org/downloads/",
2016
+
"license": [
2017
+
"MIT"
2018
+
],
2019
+
"authors": [
2020
+
{
2021
+
"name": "Nicolas Grekas",
2022
+
"email": "p@tchwork.com"
2023
+
},
2024
+
{
2025
+
"name": "Symfony Community",
2026
+
"homepage": "https://symfony.com/contributors"
2027
+
}
2028
+
],
2029
+
"description": "A generic function and convention to trigger deprecation notices",
2030
+
"homepage": "https://symfony.com",
2031
+
"support": {
2032
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
2033
+
},
2034
+
"funding": [
2035
+
{
2036
+
"url": "https://symfony.com/sponsor",
2037
+
"type": "custom"
2038
+
},
2039
+
{
2040
+
"url": "https://github.com/fabpot",
2041
+
"type": "github"
2042
+
},
2043
+
{
2044
+
"url": "https://github.com/nicolas-grekas",
2045
+
"type": "github"
2046
+
},
2047
+
{
2048
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2049
+
"type": "tidelift"
2050
+
}
2051
+
],
2052
+
"time": "2024-09-25T14:21:43+00:00"
2053
+
},
2054
+
{
2055
+
"name": "symfony/polyfill-ctype",
2056
+
"version": "1.x-dev",
2057
+
"source": {
2058
+
"type": "git",
2059
+
"url": "https://github.com/symfony/polyfill-ctype.git",
2060
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
2061
+
},
2062
+
"dist": {
2063
+
"type": "zip",
2064
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
2065
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
2066
+
"shasum": ""
2067
+
},
2068
+
"require": {
2069
+
"php": ">=7.2"
2070
+
},
2071
+
"provide": {
2072
+
"ext-ctype": "*"
2073
+
},
2074
+
"suggest": {
2075
+
"ext-ctype": "For best performance"
2076
+
},
2077
+
"default-branch": true,
2078
+
"type": "library",
2079
+
"extra": {
2080
+
"thanks": {
2081
+
"url": "https://github.com/symfony/polyfill",
2082
+
"name": "symfony/polyfill"
2083
+
}
2084
+
},
2085
+
"autoload": {
2086
+
"files": [
2087
+
"bootstrap.php"
2088
+
],
2089
+
"psr-4": {
2090
+
"Symfony\\Polyfill\\Ctype\\": ""
2091
+
}
2092
+
},
2093
+
"notification-url": "https://packagist.org/downloads/",
2094
+
"license": [
2095
+
"MIT"
2096
+
],
2097
+
"authors": [
2098
+
{
2099
+
"name": "Gert de Pagter",
2100
+
"email": "BackEndTea@gmail.com"
2101
+
},
2102
+
{
2103
+
"name": "Symfony Community",
2104
+
"homepage": "https://symfony.com/contributors"
2105
+
}
2106
+
],
2107
+
"description": "Symfony polyfill for ctype functions",
2108
+
"homepage": "https://symfony.com",
2109
+
"keywords": [
2110
+
"compatibility",
2111
+
"ctype",
2112
+
"polyfill",
2113
+
"portable"
2114
+
],
2115
+
"support": {
2116
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
2117
+
},
2118
+
"funding": [
2119
+
{
2120
+
"url": "https://symfony.com/sponsor",
2121
+
"type": "custom"
2122
+
},
2123
+
{
2124
+
"url": "https://github.com/fabpot",
2125
+
"type": "github"
2126
+
},
2127
+
{
2128
+
"url": "https://github.com/nicolas-grekas",
2129
+
"type": "github"
2130
+
},
2131
+
{
2132
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2133
+
"type": "tidelift"
2134
+
}
2135
+
],
2136
+
"time": "2024-09-09T11:45:10+00:00"
2137
+
},
2138
+
{
2139
+
"name": "symfony/polyfill-intl-grapheme",
2140
+
"version": "1.x-dev",
2141
+
"source": {
2142
+
"type": "git",
2143
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
2144
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
2145
+
},
2146
+
"dist": {
2147
+
"type": "zip",
2148
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
2149
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
2150
+
"shasum": ""
2151
+
},
2152
+
"require": {
2153
+
"php": ">=7.2"
2154
+
},
2155
+
"suggest": {
2156
+
"ext-intl": "For best performance"
2157
+
},
2158
+
"default-branch": true,
2159
+
"type": "library",
2160
+
"extra": {
2161
+
"thanks": {
2162
+
"url": "https://github.com/symfony/polyfill",
2163
+
"name": "symfony/polyfill"
2164
+
}
2165
+
},
2166
+
"autoload": {
2167
+
"files": [
2168
+
"bootstrap.php"
2169
+
],
2170
+
"psr-4": {
2171
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
2172
+
}
2173
+
},
2174
+
"notification-url": "https://packagist.org/downloads/",
2175
+
"license": [
2176
+
"MIT"
2177
+
],
2178
+
"authors": [
2179
+
{
2180
+
"name": "Nicolas Grekas",
2181
+
"email": "p@tchwork.com"
2182
+
},
2183
+
{
2184
+
"name": "Symfony Community",
2185
+
"homepage": "https://symfony.com/contributors"
2186
+
}
2187
+
],
2188
+
"description": "Symfony polyfill for intl's grapheme_* functions",
2189
+
"homepage": "https://symfony.com",
2190
+
"keywords": [
2191
+
"compatibility",
2192
+
"grapheme",
2193
+
"intl",
2194
+
"polyfill",
2195
+
"portable",
2196
+
"shim"
2197
+
],
2198
+
"support": {
2199
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
2200
+
},
2201
+
"funding": [
2202
+
{
2203
+
"url": "https://symfony.com/sponsor",
2204
+
"type": "custom"
2205
+
},
2206
+
{
2207
+
"url": "https://github.com/fabpot",
2208
+
"type": "github"
2209
+
},
2210
+
{
2211
+
"url": "https://github.com/nicolas-grekas",
2212
+
"type": "github"
2213
+
},
2214
+
{
2215
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2216
+
"type": "tidelift"
2217
+
}
2218
+
],
2219
+
"time": "2025-06-27T09:58:17+00:00"
2220
+
},
2221
+
{
2222
+
"name": "symfony/polyfill-intl-normalizer",
2223
+
"version": "1.x-dev",
2224
+
"source": {
2225
+
"type": "git",
2226
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
2227
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c"
2228
+
},
2229
+
"dist": {
2230
+
"type": "zip",
2231
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
2232
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c",
2233
+
"shasum": ""
2234
+
},
2235
+
"require": {
2236
+
"php": ">=7.2"
2237
+
},
2238
+
"suggest": {
2239
+
"ext-intl": "For best performance"
2240
+
},
2241
+
"default-branch": true,
2242
+
"type": "library",
2243
+
"extra": {
2244
+
"thanks": {
2245
+
"url": "https://github.com/symfony/polyfill",
2246
+
"name": "symfony/polyfill"
2247
+
}
2248
+
},
2249
+
"autoload": {
2250
+
"files": [
2251
+
"bootstrap.php"
2252
+
],
2253
+
"psr-4": {
2254
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
2255
+
},
2256
+
"classmap": [
2257
+
"Resources/stubs"
2258
+
]
2259
+
},
2260
+
"notification-url": "https://packagist.org/downloads/",
2261
+
"license": [
2262
+
"MIT"
2263
+
],
2264
+
"authors": [
2265
+
{
2266
+
"name": "Nicolas Grekas",
2267
+
"email": "p@tchwork.com"
2268
+
},
2269
+
{
2270
+
"name": "Symfony Community",
2271
+
"homepage": "https://symfony.com/contributors"
2272
+
}
2273
+
],
2274
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
2275
+
"homepage": "https://symfony.com",
2276
+
"keywords": [
2277
+
"compatibility",
2278
+
"intl",
2279
+
"normalizer",
2280
+
"polyfill",
2281
+
"portable",
2282
+
"shim"
2283
+
],
2284
+
"support": {
2285
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
2286
+
},
2287
+
"funding": [
2288
+
{
2289
+
"url": "https://symfony.com/sponsor",
2290
+
"type": "custom"
2291
+
},
2292
+
{
2293
+
"url": "https://github.com/fabpot",
2294
+
"type": "github"
2295
+
},
2296
+
{
2297
+
"url": "https://github.com/nicolas-grekas",
2298
+
"type": "github"
2299
+
},
2300
+
{
2301
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2302
+
"type": "tidelift"
2303
+
}
2304
+
],
2305
+
"time": "2024-09-09T11:45:10+00:00"
2306
+
},
2307
+
{
2308
+
"name": "symfony/polyfill-mbstring",
2309
+
"version": "1.x-dev",
2310
+
"source": {
2311
+
"type": "git",
2312
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
2313
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
2314
+
},
2315
+
"dist": {
2316
+
"type": "zip",
2317
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
2318
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
2319
+
"shasum": ""
2320
+
},
2321
+
"require": {
2322
+
"ext-iconv": "*",
2323
+
"php": ">=7.2"
2324
+
},
2325
+
"provide": {
2326
+
"ext-mbstring": "*"
2327
+
},
2328
+
"suggest": {
2329
+
"ext-mbstring": "For best performance"
2330
+
},
2331
+
"default-branch": true,
2332
+
"type": "library",
2333
+
"extra": {
2334
+
"thanks": {
2335
+
"url": "https://github.com/symfony/polyfill",
2336
+
"name": "symfony/polyfill"
2337
+
}
2338
+
},
2339
+
"autoload": {
2340
+
"files": [
2341
+
"bootstrap.php"
2342
+
],
2343
+
"psr-4": {
2344
+
"Symfony\\Polyfill\\Mbstring\\": ""
2345
+
}
2346
+
},
2347
+
"notification-url": "https://packagist.org/downloads/",
2348
+
"license": [
2349
+
"MIT"
2350
+
],
2351
+
"authors": [
2352
+
{
2353
+
"name": "Nicolas Grekas",
2354
+
"email": "p@tchwork.com"
2355
+
},
2356
+
{
2357
+
"name": "Symfony Community",
2358
+
"homepage": "https://symfony.com/contributors"
2359
+
}
2360
+
],
2361
+
"description": "Symfony polyfill for the Mbstring extension",
2362
+
"homepage": "https://symfony.com",
2363
+
"keywords": [
2364
+
"compatibility",
2365
+
"mbstring",
2366
+
"polyfill",
2367
+
"portable",
2368
+
"shim"
2369
+
],
2370
+
"support": {
2371
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
2372
+
},
2373
+
"funding": [
2374
+
{
2375
+
"url": "https://symfony.com/sponsor",
2376
+
"type": "custom"
2377
+
},
2378
+
{
2379
+
"url": "https://github.com/fabpot",
2380
+
"type": "github"
2381
+
},
2382
+
{
2383
+
"url": "https://github.com/nicolas-grekas",
2384
+
"type": "github"
2385
+
},
2386
+
{
2387
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2388
+
"type": "tidelift"
2389
+
}
2390
+
],
2391
+
"time": "2024-12-23T08:48:59+00:00"
2392
+
},
2393
+
{
2394
+
"name": "symfony/polyfill-php80",
2395
+
"version": "1.x-dev",
2396
+
"source": {
2397
+
"type": "git",
2398
+
"url": "https://github.com/symfony/polyfill-php80.git",
2399
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
2400
+
},
2401
+
"dist": {
2402
+
"type": "zip",
2403
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2404
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2405
+
"shasum": ""
2406
+
},
2407
+
"require": {
2408
+
"php": ">=7.2"
2409
+
},
2410
+
"default-branch": true,
2411
+
"type": "library",
2412
+
"extra": {
2413
+
"thanks": {
2414
+
"url": "https://github.com/symfony/polyfill",
2415
+
"name": "symfony/polyfill"
2416
+
}
2417
+
},
2418
+
"autoload": {
2419
+
"files": [
2420
+
"bootstrap.php"
2421
+
],
2422
+
"psr-4": {
2423
+
"Symfony\\Polyfill\\Php80\\": ""
2424
+
},
2425
+
"classmap": [
2426
+
"Resources/stubs"
2427
+
]
2428
+
},
2429
+
"notification-url": "https://packagist.org/downloads/",
2430
+
"license": [
2431
+
"MIT"
2432
+
],
2433
+
"authors": [
2434
+
{
2435
+
"name": "Ion Bazan",
2436
+
"email": "ion.bazan@gmail.com"
2437
+
},
2438
+
{
2439
+
"name": "Nicolas Grekas",
2440
+
"email": "p@tchwork.com"
2441
+
},
2442
+
{
2443
+
"name": "Symfony Community",
2444
+
"homepage": "https://symfony.com/contributors"
2445
+
}
2446
+
],
2447
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
2448
+
"homepage": "https://symfony.com",
2449
+
"keywords": [
2450
+
"compatibility",
2451
+
"polyfill",
2452
+
"portable",
2453
+
"shim"
2454
+
],
2455
+
"support": {
2456
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
2457
+
},
2458
+
"funding": [
2459
+
{
2460
+
"url": "https://symfony.com/sponsor",
2461
+
"type": "custom"
2462
+
},
2463
+
{
2464
+
"url": "https://github.com/fabpot",
2465
+
"type": "github"
2466
+
},
2467
+
{
2468
+
"url": "https://github.com/nicolas-grekas",
2469
+
"type": "github"
2470
+
},
2471
+
{
2472
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2473
+
"type": "tidelift"
2474
+
}
2475
+
],
2476
+
"time": "2025-01-02T08:10:11+00:00"
2477
+
},
2478
+
{
2479
+
"name": "symfony/service-contracts",
2480
+
"version": "dev-main",
2481
+
"source": {
2482
+
"type": "git",
2483
+
"url": "https://github.com/symfony/service-contracts.git",
2484
+
"reference": "37f608af519f85042e9a38eded401d4d1fc54e95"
2485
+
},
2486
+
"dist": {
2487
+
"type": "zip",
2488
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/37f608af519f85042e9a38eded401d4d1fc54e95",
2489
+
"reference": "37f608af519f85042e9a38eded401d4d1fc54e95",
2490
+
"shasum": ""
2491
+
},
2492
+
"require": {
2493
+
"php": ">=8.1",
2494
+
"psr/container": "^1.1|^2.0",
2495
+
"symfony/deprecation-contracts": "^2.5|^3"
2496
+
},
2497
+
"conflict": {
2498
+
"ext-psr": "<1.1|>=2"
2499
+
},
2500
+
"default-branch": true,
2501
+
"type": "library",
2502
+
"extra": {
2503
+
"thanks": {
2504
+
"url": "https://github.com/symfony/contracts",
2505
+
"name": "symfony/contracts"
2506
+
},
2507
+
"branch-alias": {
2508
+
"dev-main": "3.6-dev"
2509
+
}
2510
+
},
2511
+
"autoload": {
2512
+
"psr-4": {
2513
+
"Symfony\\Contracts\\Service\\": ""
2514
+
},
2515
+
"exclude-from-classmap": [
2516
+
"/Test/"
2517
+
]
2518
+
},
2519
+
"notification-url": "https://packagist.org/downloads/",
2520
+
"license": [
2521
+
"MIT"
2522
+
],
2523
+
"authors": [
2524
+
{
2525
+
"name": "Nicolas Grekas",
2526
+
"email": "p@tchwork.com"
2527
+
},
2528
+
{
2529
+
"name": "Symfony Community",
2530
+
"homepage": "https://symfony.com/contributors"
2531
+
}
2532
+
],
2533
+
"description": "Generic abstractions related to writing services",
2534
+
"homepage": "https://symfony.com",
2535
+
"keywords": [
2536
+
"abstractions",
2537
+
"contracts",
2538
+
"decoupling",
2539
+
"interfaces",
2540
+
"interoperability",
2541
+
"standards"
2542
+
],
2543
+
"support": {
2544
+
"source": "https://github.com/symfony/service-contracts/tree/main"
2545
+
},
2546
+
"funding": [
2547
+
{
2548
+
"url": "https://symfony.com/sponsor",
2549
+
"type": "custom"
2550
+
},
2551
+
{
2552
+
"url": "https://github.com/fabpot",
2553
+
"type": "github"
2554
+
},
2555
+
{
2556
+
"url": "https://github.com/nicolas-grekas",
2557
+
"type": "github"
2558
+
},
2559
+
{
2560
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2561
+
"type": "tidelift"
2562
+
}
2563
+
],
2564
+
"time": "2025-07-31T09:31:17+00:00"
2565
+
},
2566
+
{
2567
+
"name": "symfony/string",
2568
+
"version": "8.1.x-dev",
2569
+
"source": {
2570
+
"type": "git",
2571
+
"url": "https://github.com/symfony/string.git",
2572
+
"reference": "8947e1ced7a8020011e91356e40778b1ff613faa"
2573
+
},
2574
+
"dist": {
2575
+
"type": "zip",
2576
+
"url": "https://api.github.com/repos/symfony/string/zipball/8947e1ced7a8020011e91356e40778b1ff613faa",
2577
+
"reference": "8947e1ced7a8020011e91356e40778b1ff613faa",
2578
+
"shasum": ""
2579
+
},
2580
+
"require": {
2581
+
"php": ">=8.4",
2582
+
"symfony/polyfill-ctype": "^1.8",
2583
+
"symfony/polyfill-intl-grapheme": "^1.33",
2584
+
"symfony/polyfill-intl-normalizer": "^1.0",
2585
+
"symfony/polyfill-mbstring": "^1.0"
2586
+
},
2587
+
"conflict": {
2588
+
"symfony/translation-contracts": "<2.5"
2589
+
},
2590
+
"require-dev": {
2591
+
"symfony/emoji": "^7.4|^8.0",
2592
+
"symfony/http-client": "^7.4|^8.0",
2593
+
"symfony/intl": "^7.4|^8.0",
2594
+
"symfony/translation-contracts": "^2.5|^3.0",
2595
+
"symfony/var-exporter": "^7.4|^8.0"
2596
+
},
2597
+
"type": "library",
2598
+
"autoload": {
2599
+
"files": [
2600
+
"Resources/functions.php"
2601
+
],
2602
+
"psr-4": {
2603
+
"Symfony\\Component\\String\\": ""
2604
+
},
2605
+
"exclude-from-classmap": [
2606
+
"/Tests/"
2607
+
]
2608
+
},
2609
+
"notification-url": "https://packagist.org/downloads/",
2610
+
"license": [
2611
+
"MIT"
2612
+
],
2613
+
"authors": [
2614
+
{
2615
+
"name": "Nicolas Grekas",
2616
+
"email": "p@tchwork.com"
2617
+
},
2618
+
{
2619
+
"name": "Symfony Community",
2620
+
"homepage": "https://symfony.com/contributors"
2621
+
}
2622
+
],
2623
+
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
2624
+
"homepage": "https://symfony.com",
2625
+
"keywords": [
2626
+
"grapheme",
2627
+
"i18n",
2628
+
"string",
2629
+
"unicode",
2630
+
"utf-8",
2631
+
"utf8"
2632
+
],
2633
+
"support": {
2634
+
"source": "https://github.com/symfony/string/tree/8.1"
2635
+
},
2636
+
"funding": [
2637
+
{
2638
+
"url": "https://symfony.com/sponsor",
2639
+
"type": "custom"
2640
+
},
2641
+
{
2642
+
"url": "https://github.com/fabpot",
2643
+
"type": "github"
2644
+
},
2645
+
{
2646
+
"url": "https://github.com/nicolas-grekas",
2647
+
"type": "github"
2648
+
},
2649
+
{
2650
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2651
+
"type": "tidelift"
2652
+
}
2653
+
],
2654
+
"time": "2025-12-19T08:33:17+00:00"
2655
+
},
2656
+
{
2657
+
"name": "tysonandre/var_representation_polyfill",
2658
+
"version": "dev-main",
2659
+
"source": {
2660
+
"type": "git",
2661
+
"url": "https://github.com/TysonAndre/var_representation_polyfill.git",
2662
+
"reference": "e9116c2c352bb0835ca428b442dde7767c11ad32"
2663
+
},
2664
+
"dist": {
2665
+
"type": "zip",
2666
+
"url": "https://api.github.com/repos/TysonAndre/var_representation_polyfill/zipball/e9116c2c352bb0835ca428b442dde7767c11ad32",
2667
+
"reference": "e9116c2c352bb0835ca428b442dde7767c11ad32",
2668
+
"shasum": ""
2669
+
},
2670
+
"require": {
2671
+
"ext-tokenizer": "*",
2672
+
"php": "^7.2.0|^8.0.0"
2673
+
},
2674
+
"provide": {
2675
+
"ext-var_representation": "*"
2676
+
},
2677
+
"require-dev": {
2678
+
"phan/phan": "^5.4.1",
2679
+
"phpunit/phpunit": "^8.5.0"
2680
+
},
2681
+
"suggest": {
2682
+
"ext-var_representation": "For best performance"
2683
+
},
2684
+
"default-branch": true,
2685
+
"type": "library",
2686
+
"extra": {
2687
+
"branch-alias": {
2688
+
"dev-main": "0.1.3-dev"
2689
+
}
2690
+
},
2691
+
"autoload": {
2692
+
"files": [
2693
+
"src/var_representation.php"
2694
+
],
2695
+
"psr-4": {
2696
+
"VarRepresentation\\": "src/VarRepresentation"
2697
+
}
2698
+
},
2699
+
"notification-url": "https://packagist.org/downloads/",
2700
+
"license": [
2701
+
"MIT"
2702
+
],
2703
+
"authors": [
2704
+
{
2705
+
"name": "Tyson Andre"
2706
+
}
2707
+
],
2708
+
"description": "Polyfill for var_representation: convert a variable to a string in a way that fixes the shortcomings of var_export",
2709
+
"keywords": [
2710
+
"var_export",
2711
+
"var_representation"
2712
+
],
2713
+
"support": {
2714
+
"issues": "https://github.com/TysonAndre/var_representation_polyfill/issues",
2715
+
"source": "https://github.com/TysonAndre/var_representation_polyfill/tree/0.1.3"
2716
+
},
2717
+
"time": "2022-08-31T12:59:22+00:00"
2718
+
},
2719
+
{
2720
+
"name": "webmozart/assert",
2721
+
"version": "2.0.0",
2722
+
"source": {
2723
+
"type": "git",
2724
+
"url": "https://github.com/webmozarts/assert.git",
2725
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54"
2726
+
},
2727
+
"dist": {
2728
+
"type": "zip",
2729
+
"url": "https://api.github.com/repos/webmozarts/assert/zipball/1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
2730
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
2731
+
"shasum": ""
2732
+
},
2733
+
"require": {
2734
+
"ext-ctype": "*",
2735
+
"ext-date": "*",
2736
+
"ext-filter": "*",
2737
+
"php": "^8.2"
2738
+
},
2739
+
"suggest": {
2740
+
"ext-intl": "",
2741
+
"ext-simplexml": "",
2742
+
"ext-spl": ""
2743
+
},
2744
+
"type": "library",
2745
+
"extra": {
2746
+
"branch-alias": {
2747
+
"dev-feature/2-0": "2.0-dev"
2748
+
}
2749
+
},
2750
+
"autoload": {
2751
+
"psr-4": {
2752
+
"Webmozart\\Assert\\": "src/"
2753
+
}
2754
+
},
2755
+
"notification-url": "https://packagist.org/downloads/",
2756
+
"license": [
2757
+
"MIT"
2758
+
],
2759
+
"authors": [
2760
+
{
2761
+
"name": "Bernhard Schussek",
2762
+
"email": "bschussek@gmail.com"
2763
+
},
2764
+
{
2765
+
"name": "Woody Gilk",
2766
+
"email": "woody.gilk@gmail.com"
2767
+
}
2768
+
],
2769
+
"description": "Assertions to validate method input/output with nice error messages.",
2770
+
"keywords": [
2771
+
"assert",
2772
+
"check",
2773
+
"validate"
2774
+
],
2775
+
"support": {
2776
+
"issues": "https://github.com/webmozarts/assert/issues",
2777
+
"source": "https://github.com/webmozarts/assert/tree/2.0.0"
2778
+
},
2779
+
"time": "2025-12-16T21:36:00+00:00"
2780
+
}
2781
+
],
2782
+
"aliases": [],
2783
+
"minimum-stability": "dev",
2784
+
"stability-flags": {},
2785
+
"prefer-stable": false,
2786
+
"prefer-lowest": false,
2787
+
"platform": {},
2788
+
"platform-dev": {},
2789
+
"plugin-api-version": "2.6.0"
2790
+
}
+3
packetmix/systems/wiki/wiki/CirrusSearch.composer.lock.license
+3
packetmix/systems/wiki/wiki/CirrusSearch.composer.lock.license
+3068
packetmix/systems/wiki/wiki/Elastica.composer.lock
+3068
packetmix/systems/wiki/wiki/Elastica.composer.lock
···
1
+
{
2
+
"_readme": [
3
+
"This file locks the dependencies of your project to a known state",
4
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+
"This file is @generated automatically"
6
+
],
7
+
"content-hash": "3f69d0eb201cd1a688d8c9518aa566b0",
8
+
"packages": [
9
+
{
10
+
"name": "elasticsearch/elasticsearch",
11
+
"version": "v7.17.3",
12
+
"source": {
13
+
"type": "git",
14
+
"url": "https://github.com/elastic/elasticsearch-php.git",
15
+
"reference": "b8a60b4136ee31117d1aa1b19879530eb6d11efb"
16
+
},
17
+
"dist": {
18
+
"type": "zip",
19
+
"url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/b8a60b4136ee31117d1aa1b19879530eb6d11efb",
20
+
"reference": "b8a60b4136ee31117d1aa1b19879530eb6d11efb",
21
+
"shasum": ""
22
+
},
23
+
"require": {
24
+
"ext-json": ">=1.3.7",
25
+
"ezimuel/ringphp": "^1.1.2",
26
+
"php": "^7.3 || ^8.0",
27
+
"psr/log": "^1|^2|^3"
28
+
},
29
+
"require-dev": {
30
+
"ext-yaml": "*",
31
+
"ext-zip": "*",
32
+
"mockery/mockery": "^1.2",
33
+
"phpstan/phpstan": "^1.10",
34
+
"phpunit/phpunit": "^9.3",
35
+
"squizlabs/php_codesniffer": "^3.4",
36
+
"symfony/finder": "~4.0"
37
+
},
38
+
"suggest": {
39
+
"ext-curl": "*",
40
+
"monolog/monolog": "Allows for client-level logging and tracing"
41
+
},
42
+
"type": "library",
43
+
"autoload": {
44
+
"files": [
45
+
"src/autoload.php"
46
+
],
47
+
"psr-4": {
48
+
"Elasticsearch\\": "src/Elasticsearch/"
49
+
}
50
+
},
51
+
"notification-url": "https://packagist.org/downloads/",
52
+
"license": [
53
+
"Apache-2.0",
54
+
"LGPL-2.1-only"
55
+
],
56
+
"authors": [
57
+
{
58
+
"name": "Zachary Tong"
59
+
},
60
+
{
61
+
"name": "Enrico Zimuel"
62
+
}
63
+
],
64
+
"description": "PHP Client for Elasticsearch",
65
+
"keywords": [
66
+
"client",
67
+
"elasticsearch",
68
+
"search"
69
+
],
70
+
"support": {
71
+
"issues": "https://github.com/elastic/elasticsearch-php/issues",
72
+
"source": "https://github.com/elastic/elasticsearch-php/tree/v7.17.3"
73
+
},
74
+
"time": "2025-07-14T09:07:02+00:00"
75
+
},
76
+
{
77
+
"name": "ezimuel/guzzlestreams",
78
+
"version": "4.1.0",
79
+
"source": {
80
+
"type": "git",
81
+
"url": "https://github.com/ezimuel/guzzlestreams.git",
82
+
"reference": "903161be81e9f497cc42fb7db982404a4e6441b0"
83
+
},
84
+
"dist": {
85
+
"type": "zip",
86
+
"url": "https://api.github.com/repos/ezimuel/guzzlestreams/zipball/903161be81e9f497cc42fb7db982404a4e6441b0",
87
+
"reference": "903161be81e9f497cc42fb7db982404a4e6441b0",
88
+
"shasum": ""
89
+
},
90
+
"require": {
91
+
"php": ">=7.4.0"
92
+
},
93
+
"require-dev": {
94
+
"phpstan/phpstan": "^2.1",
95
+
"phpunit/phpunit": "~9.0"
96
+
},
97
+
"type": "library",
98
+
"extra": {
99
+
"branch-alias": {
100
+
"dev-master": "3.0-dev"
101
+
}
102
+
},
103
+
"autoload": {
104
+
"psr-4": {
105
+
"GuzzleHttp\\Stream\\": "src/"
106
+
}
107
+
},
108
+
"notification-url": "https://packagist.org/downloads/",
109
+
"license": [
110
+
"MIT"
111
+
],
112
+
"authors": [
113
+
{
114
+
"name": "Michael Dowling",
115
+
"email": "mtdowling@gmail.com",
116
+
"homepage": "https://github.com/mtdowling"
117
+
}
118
+
],
119
+
"description": "Fork of guzzle/streams (abandoned) to be used with elasticsearch-php",
120
+
"homepage": "http://guzzlephp.org/",
121
+
"keywords": [
122
+
"Guzzle",
123
+
"stream"
124
+
],
125
+
"support": {
126
+
"source": "https://github.com/ezimuel/guzzlestreams/tree/4.1.0"
127
+
},
128
+
"time": "2025-08-05T06:44:46+00:00"
129
+
},
130
+
{
131
+
"name": "ezimuel/ringphp",
132
+
"version": "1.4.0",
133
+
"source": {
134
+
"type": "git",
135
+
"url": "https://github.com/ezimuel/ringphp.git",
136
+
"reference": "bc983599ec7add50c00e420e867c403c8ed16ae7"
137
+
},
138
+
"dist": {
139
+
"type": "zip",
140
+
"url": "https://api.github.com/repos/ezimuel/ringphp/zipball/bc983599ec7add50c00e420e867c403c8ed16ae7",
141
+
"reference": "bc983599ec7add50c00e420e867c403c8ed16ae7",
142
+
"shasum": ""
143
+
},
144
+
"require": {
145
+
"ezimuel/guzzlestreams": "^3.0.1 || ^4.0.0",
146
+
"php": ">=5.4.0",
147
+
"react/promise": "^2.0 || ^3.0"
148
+
},
149
+
"replace": {
150
+
"guzzlehttp/ringphp": "self.version"
151
+
},
152
+
"require-dev": {
153
+
"ext-curl": "*",
154
+
"phpunit/phpunit": "~9.0"
155
+
},
156
+
"suggest": {
157
+
"ext-curl": "Guzzle will use specific adapters if cURL is present"
158
+
},
159
+
"type": "library",
160
+
"extra": {
161
+
"branch-alias": {
162
+
"dev-master": "1.1-dev"
163
+
}
164
+
},
165
+
"autoload": {
166
+
"psr-4": {
167
+
"GuzzleHttp\\Ring\\": "src/"
168
+
}
169
+
},
170
+
"notification-url": "https://packagist.org/downloads/",
171
+
"license": [
172
+
"MIT"
173
+
],
174
+
"authors": [
175
+
{
176
+
"name": "Michael Dowling",
177
+
"email": "mtdowling@gmail.com",
178
+
"homepage": "https://github.com/mtdowling"
179
+
}
180
+
],
181
+
"description": "Fork of guzzle/RingPHP (abandoned) to be used with elasticsearch-php",
182
+
"support": {
183
+
"source": "https://github.com/ezimuel/ringphp/tree/1.4.0"
184
+
},
185
+
"time": "2025-08-07T09:30:38+00:00"
186
+
},
187
+
{
188
+
"name": "nyholm/dsn",
189
+
"version": "2.0.1",
190
+
"source": {
191
+
"type": "git",
192
+
"url": "https://github.com/Nyholm/dsn.git",
193
+
"reference": "9445621b426bac8c0ca161db8cd700da00a4e618"
194
+
},
195
+
"dist": {
196
+
"type": "zip",
197
+
"url": "https://api.github.com/repos/Nyholm/dsn/zipball/9445621b426bac8c0ca161db8cd700da00a4e618",
198
+
"reference": "9445621b426bac8c0ca161db8cd700da00a4e618",
199
+
"shasum": ""
200
+
},
201
+
"require": {
202
+
"php": ">=7.1"
203
+
},
204
+
"require-dev": {
205
+
"symfony/phpunit-bridge": "^5.1"
206
+
},
207
+
"type": "library",
208
+
"extra": {
209
+
"branch-alias": {
210
+
"dev-master": "2.0-dev"
211
+
}
212
+
},
213
+
"autoload": {
214
+
"psr-4": {
215
+
"Nyholm\\Dsn\\": "src/"
216
+
}
217
+
},
218
+
"notification-url": "https://packagist.org/downloads/",
219
+
"license": [
220
+
"MIT"
221
+
],
222
+
"authors": [
223
+
{
224
+
"name": "Tobias Nyholm",
225
+
"email": "tobias.nyholm@gmail.com"
226
+
}
227
+
],
228
+
"description": "Parse your DSN strings in a powerful and flexible way",
229
+
"homepage": "http://tnyholm.se",
230
+
"keywords": [
231
+
"database",
232
+
"dsn",
233
+
"dsn parser",
234
+
"parser"
235
+
],
236
+
"support": {
237
+
"issues": "https://github.com/Nyholm/dsn/issues",
238
+
"source": "https://github.com/Nyholm/dsn/tree/2.0.1"
239
+
},
240
+
"funding": [
241
+
{
242
+
"url": "https://github.com/Nyholm",
243
+
"type": "github"
244
+
}
245
+
],
246
+
"time": "2021-11-18T09:23:29+00:00"
247
+
},
248
+
{
249
+
"name": "psr/log",
250
+
"version": "3.0.2",
251
+
"source": {
252
+
"type": "git",
253
+
"url": "https://github.com/php-fig/log.git",
254
+
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
255
+
},
256
+
"dist": {
257
+
"type": "zip",
258
+
"url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
259
+
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
260
+
"shasum": ""
261
+
},
262
+
"require": {
263
+
"php": ">=8.0.0"
264
+
},
265
+
"type": "library",
266
+
"extra": {
267
+
"branch-alias": {
268
+
"dev-master": "3.x-dev"
269
+
}
270
+
},
271
+
"autoload": {
272
+
"psr-4": {
273
+
"Psr\\Log\\": "src"
274
+
}
275
+
},
276
+
"notification-url": "https://packagist.org/downloads/",
277
+
"license": [
278
+
"MIT"
279
+
],
280
+
"authors": [
281
+
{
282
+
"name": "PHP-FIG",
283
+
"homepage": "https://www.php-fig.org/"
284
+
}
285
+
],
286
+
"description": "Common interface for logging libraries",
287
+
"homepage": "https://github.com/php-fig/log",
288
+
"keywords": [
289
+
"log",
290
+
"psr",
291
+
"psr-3"
292
+
],
293
+
"support": {
294
+
"source": "https://github.com/php-fig/log/tree/3.0.2"
295
+
},
296
+
"time": "2024-09-11T13:17:53+00:00"
297
+
},
298
+
{
299
+
"name": "react/promise",
300
+
"version": "v3.3.0",
301
+
"source": {
302
+
"type": "git",
303
+
"url": "https://github.com/reactphp/promise.git",
304
+
"reference": "23444f53a813a3296c1368bb104793ce8d88f04a"
305
+
},
306
+
"dist": {
307
+
"type": "zip",
308
+
"url": "https://api.github.com/repos/reactphp/promise/zipball/23444f53a813a3296c1368bb104793ce8d88f04a",
309
+
"reference": "23444f53a813a3296c1368bb104793ce8d88f04a",
310
+
"shasum": ""
311
+
},
312
+
"require": {
313
+
"php": ">=7.1.0"
314
+
},
315
+
"require-dev": {
316
+
"phpstan/phpstan": "1.12.28 || 1.4.10",
317
+
"phpunit/phpunit": "^9.6 || ^7.5"
318
+
},
319
+
"type": "library",
320
+
"autoload": {
321
+
"files": [
322
+
"src/functions_include.php"
323
+
],
324
+
"psr-4": {
325
+
"React\\Promise\\": "src/"
326
+
}
327
+
},
328
+
"notification-url": "https://packagist.org/downloads/",
329
+
"license": [
330
+
"MIT"
331
+
],
332
+
"authors": [
333
+
{
334
+
"name": "Jan Sorgalla",
335
+
"email": "jsorgalla@gmail.com",
336
+
"homepage": "https://sorgalla.com/"
337
+
},
338
+
{
339
+
"name": "Christian Lรผck",
340
+
"email": "christian@clue.engineering",
341
+
"homepage": "https://clue.engineering/"
342
+
},
343
+
{
344
+
"name": "Cees-Jan Kiewiet",
345
+
"email": "reactphp@ceesjankiewiet.nl",
346
+
"homepage": "https://wyrihaximus.net/"
347
+
},
348
+
{
349
+
"name": "Chris Boden",
350
+
"email": "cboden@gmail.com",
351
+
"homepage": "https://cboden.dev/"
352
+
}
353
+
],
354
+
"description": "A lightweight implementation of CommonJS Promises/A for PHP",
355
+
"keywords": [
356
+
"promise",
357
+
"promises"
358
+
],
359
+
"support": {
360
+
"issues": "https://github.com/reactphp/promise/issues",
361
+
"source": "https://github.com/reactphp/promise/tree/v3.3.0"
362
+
},
363
+
"funding": [
364
+
{
365
+
"url": "https://opencollective.com/reactphp",
366
+
"type": "open_collective"
367
+
}
368
+
],
369
+
"time": "2025-08-19T18:57:03+00:00"
370
+
},
371
+
{
372
+
"name": "ruflin/elastica",
373
+
"version": "7.3.2",
374
+
"source": {
375
+
"type": "git",
376
+
"url": "https://github.com/ruflin/Elastica.git",
377
+
"reference": "84ba137678707a1aa4242d12bad891dc38fa2608"
378
+
},
379
+
"dist": {
380
+
"type": "zip",
381
+
"url": "https://api.github.com/repos/ruflin/Elastica/zipball/84ba137678707a1aa4242d12bad891dc38fa2608",
382
+
"reference": "84ba137678707a1aa4242d12bad891dc38fa2608",
383
+
"shasum": ""
384
+
},
385
+
"require": {
386
+
"elasticsearch/elasticsearch": "^7.10",
387
+
"ext-json": "*",
388
+
"nyholm/dsn": "^2.0.0",
389
+
"php": "^7.2 || ^8.0",
390
+
"psr/log": "^1.0 || ^2.0 || ^3.0",
391
+
"symfony/deprecation-contracts": "^2.2 || ^3.0",
392
+
"symfony/polyfill-php73": "^1.19"
393
+
},
394
+
"require-dev": {
395
+
"aws/aws-sdk-php": "^3.155",
396
+
"guzzlehttp/guzzle": "^6.3 || ^7.2",
397
+
"phpstan/phpstan": "^1.5",
398
+
"phpstan/phpstan-phpunit": "^1.1",
399
+
"phpunit/phpunit": "^8.5.8 || ^9.4",
400
+
"symfony/phpunit-bridge": "^6.0"
401
+
},
402
+
"suggest": {
403
+
"aws/aws-sdk-php": "Allow using IAM authentication with Amazon ElasticSearch Service",
404
+
"guzzlehttp/guzzle": "Allow using guzzle as transport",
405
+
"monolog/monolog": "Logging request"
406
+
},
407
+
"type": "library",
408
+
"extra": {
409
+
"branch-alias": {
410
+
"dev-master": "7.0.x-dev"
411
+
}
412
+
},
413
+
"autoload": {
414
+
"psr-4": {
415
+
"Elastica\\": "src/"
416
+
}
417
+
},
418
+
"notification-url": "https://packagist.org/downloads/",
419
+
"license": [
420
+
"MIT"
421
+
],
422
+
"authors": [
423
+
{
424
+
"name": "Nicolas Ruflin",
425
+
"homepage": "http://ruflin.com/"
426
+
}
427
+
],
428
+
"description": "Elasticsearch Client",
429
+
"homepage": "http://elastica.io/",
430
+
"keywords": [
431
+
"client",
432
+
"search"
433
+
],
434
+
"support": {
435
+
"issues": "https://github.com/ruflin/Elastica/issues",
436
+
"source": "https://github.com/ruflin/Elastica/tree/7.3.2"
437
+
},
438
+
"time": "2024-03-11T14:11:50+00:00"
439
+
},
440
+
{
441
+
"name": "symfony/deprecation-contracts",
442
+
"version": "v3.6.0",
443
+
"source": {
444
+
"type": "git",
445
+
"url": "https://github.com/symfony/deprecation-contracts.git",
446
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
447
+
},
448
+
"dist": {
449
+
"type": "zip",
450
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
451
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
452
+
"shasum": ""
453
+
},
454
+
"require": {
455
+
"php": ">=8.1"
456
+
},
457
+
"type": "library",
458
+
"extra": {
459
+
"thanks": {
460
+
"url": "https://github.com/symfony/contracts",
461
+
"name": "symfony/contracts"
462
+
},
463
+
"branch-alias": {
464
+
"dev-main": "3.6-dev"
465
+
}
466
+
},
467
+
"autoload": {
468
+
"files": [
469
+
"function.php"
470
+
]
471
+
},
472
+
"notification-url": "https://packagist.org/downloads/",
473
+
"license": [
474
+
"MIT"
475
+
],
476
+
"authors": [
477
+
{
478
+
"name": "Nicolas Grekas",
479
+
"email": "p@tchwork.com"
480
+
},
481
+
{
482
+
"name": "Symfony Community",
483
+
"homepage": "https://symfony.com/contributors"
484
+
}
485
+
],
486
+
"description": "A generic function and convention to trigger deprecation notices",
487
+
"homepage": "https://symfony.com",
488
+
"support": {
489
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
490
+
},
491
+
"funding": [
492
+
{
493
+
"url": "https://symfony.com/sponsor",
494
+
"type": "custom"
495
+
},
496
+
{
497
+
"url": "https://github.com/fabpot",
498
+
"type": "github"
499
+
},
500
+
{
501
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
502
+
"type": "tidelift"
503
+
}
504
+
],
505
+
"time": "2024-09-25T14:21:43+00:00"
506
+
},
507
+
{
508
+
"name": "symfony/polyfill-php73",
509
+
"version": "v1.33.0",
510
+
"source": {
511
+
"type": "git",
512
+
"url": "https://github.com/symfony/polyfill-php73.git",
513
+
"reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
514
+
},
515
+
"dist": {
516
+
"type": "zip",
517
+
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
518
+
"reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
519
+
"shasum": ""
520
+
},
521
+
"require": {
522
+
"php": ">=7.2"
523
+
},
524
+
"type": "library",
525
+
"extra": {
526
+
"thanks": {
527
+
"url": "https://github.com/symfony/polyfill",
528
+
"name": "symfony/polyfill"
529
+
}
530
+
},
531
+
"autoload": {
532
+
"files": [
533
+
"bootstrap.php"
534
+
],
535
+
"psr-4": {
536
+
"Symfony\\Polyfill\\Php73\\": ""
537
+
},
538
+
"classmap": [
539
+
"Resources/stubs"
540
+
]
541
+
},
542
+
"notification-url": "https://packagist.org/downloads/",
543
+
"license": [
544
+
"MIT"
545
+
],
546
+
"authors": [
547
+
{
548
+
"name": "Nicolas Grekas",
549
+
"email": "p@tchwork.com"
550
+
},
551
+
{
552
+
"name": "Symfony Community",
553
+
"homepage": "https://symfony.com/contributors"
554
+
}
555
+
],
556
+
"description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
557
+
"homepage": "https://symfony.com",
558
+
"keywords": [
559
+
"compatibility",
560
+
"polyfill",
561
+
"portable",
562
+
"shim"
563
+
],
564
+
"support": {
565
+
"source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0"
566
+
},
567
+
"funding": [
568
+
{
569
+
"url": "https://symfony.com/sponsor",
570
+
"type": "custom"
571
+
},
572
+
{
573
+
"url": "https://github.com/fabpot",
574
+
"type": "github"
575
+
},
576
+
{
577
+
"url": "https://github.com/nicolas-grekas",
578
+
"type": "github"
579
+
},
580
+
{
581
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
582
+
"type": "tidelift"
583
+
}
584
+
],
585
+
"time": "2024-09-09T11:45:10+00:00"
586
+
}
587
+
],
588
+
"packages-dev": [
589
+
{
590
+
"name": "composer/pcre",
591
+
"version": "3.3.2",
592
+
"source": {
593
+
"type": "git",
594
+
"url": "https://github.com/composer/pcre.git",
595
+
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
596
+
},
597
+
"dist": {
598
+
"type": "zip",
599
+
"url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
600
+
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
601
+
"shasum": ""
602
+
},
603
+
"require": {
604
+
"php": "^7.4 || ^8.0"
605
+
},
606
+
"conflict": {
607
+
"phpstan/phpstan": "<1.11.10"
608
+
},
609
+
"require-dev": {
610
+
"phpstan/phpstan": "^1.12 || ^2",
611
+
"phpstan/phpstan-strict-rules": "^1 || ^2",
612
+
"phpunit/phpunit": "^8 || ^9"
613
+
},
614
+
"type": "library",
615
+
"extra": {
616
+
"phpstan": {
617
+
"includes": [
618
+
"extension.neon"
619
+
]
620
+
},
621
+
"branch-alias": {
622
+
"dev-main": "3.x-dev"
623
+
}
624
+
},
625
+
"autoload": {
626
+
"psr-4": {
627
+
"Composer\\Pcre\\": "src"
628
+
}
629
+
},
630
+
"notification-url": "https://packagist.org/downloads/",
631
+
"license": [
632
+
"MIT"
633
+
],
634
+
"authors": [
635
+
{
636
+
"name": "Jordi Boggiano",
637
+
"email": "j.boggiano@seld.be",
638
+
"homepage": "http://seld.be"
639
+
}
640
+
],
641
+
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
642
+
"keywords": [
643
+
"PCRE",
644
+
"preg",
645
+
"regex",
646
+
"regular expression"
647
+
],
648
+
"support": {
649
+
"issues": "https://github.com/composer/pcre/issues",
650
+
"source": "https://github.com/composer/pcre/tree/3.3.2"
651
+
},
652
+
"funding": [
653
+
{
654
+
"url": "https://packagist.com",
655
+
"type": "custom"
656
+
},
657
+
{
658
+
"url": "https://github.com/composer",
659
+
"type": "github"
660
+
},
661
+
{
662
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
663
+
"type": "tidelift"
664
+
}
665
+
],
666
+
"time": "2024-11-12T16:29:46+00:00"
667
+
},
668
+
{
669
+
"name": "composer/semver",
670
+
"version": "3.4.4",
671
+
"source": {
672
+
"type": "git",
673
+
"url": "https://github.com/composer/semver.git",
674
+
"reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
675
+
},
676
+
"dist": {
677
+
"type": "zip",
678
+
"url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
679
+
"reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
680
+
"shasum": ""
681
+
},
682
+
"require": {
683
+
"php": "^5.3.2 || ^7.0 || ^8.0"
684
+
},
685
+
"require-dev": {
686
+
"phpstan/phpstan": "^1.11",
687
+
"symfony/phpunit-bridge": "^3 || ^7"
688
+
},
689
+
"type": "library",
690
+
"extra": {
691
+
"branch-alias": {
692
+
"dev-main": "3.x-dev"
693
+
}
694
+
},
695
+
"autoload": {
696
+
"psr-4": {
697
+
"Composer\\Semver\\": "src"
698
+
}
699
+
},
700
+
"notification-url": "https://packagist.org/downloads/",
701
+
"license": [
702
+
"MIT"
703
+
],
704
+
"authors": [
705
+
{
706
+
"name": "Nils Adermann",
707
+
"email": "naderman@naderman.de",
708
+
"homepage": "http://www.naderman.de"
709
+
},
710
+
{
711
+
"name": "Jordi Boggiano",
712
+
"email": "j.boggiano@seld.be",
713
+
"homepage": "http://seld.be"
714
+
},
715
+
{
716
+
"name": "Rob Bast",
717
+
"email": "rob.bast@gmail.com",
718
+
"homepage": "http://robbast.nl"
719
+
}
720
+
],
721
+
"description": "Semver library that offers utilities, version constraint parsing and validation.",
722
+
"keywords": [
723
+
"semantic",
724
+
"semver",
725
+
"validation",
726
+
"versioning"
727
+
],
728
+
"support": {
729
+
"irc": "ircs://irc.libera.chat:6697/composer",
730
+
"issues": "https://github.com/composer/semver/issues",
731
+
"source": "https://github.com/composer/semver/tree/3.4.4"
732
+
},
733
+
"funding": [
734
+
{
735
+
"url": "https://packagist.com",
736
+
"type": "custom"
737
+
},
738
+
{
739
+
"url": "https://github.com/composer",
740
+
"type": "github"
741
+
}
742
+
],
743
+
"time": "2025-08-20T19:15:30+00:00"
744
+
},
745
+
{
746
+
"name": "composer/spdx-licenses",
747
+
"version": "1.5.9",
748
+
"source": {
749
+
"type": "git",
750
+
"url": "https://github.com/composer/spdx-licenses.git",
751
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f"
752
+
},
753
+
"dist": {
754
+
"type": "zip",
755
+
"url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f",
756
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f",
757
+
"shasum": ""
758
+
},
759
+
"require": {
760
+
"php": "^5.3.2 || ^7.0 || ^8.0"
761
+
},
762
+
"require-dev": {
763
+
"phpstan/phpstan": "^1.11",
764
+
"symfony/phpunit-bridge": "^3 || ^7"
765
+
},
766
+
"type": "library",
767
+
"extra": {
768
+
"branch-alias": {
769
+
"dev-main": "1.x-dev"
770
+
}
771
+
},
772
+
"autoload": {
773
+
"psr-4": {
774
+
"Composer\\Spdx\\": "src"
775
+
}
776
+
},
777
+
"notification-url": "https://packagist.org/downloads/",
778
+
"license": [
779
+
"MIT"
780
+
],
781
+
"authors": [
782
+
{
783
+
"name": "Nils Adermann",
784
+
"email": "naderman@naderman.de",
785
+
"homepage": "http://www.naderman.de"
786
+
},
787
+
{
788
+
"name": "Jordi Boggiano",
789
+
"email": "j.boggiano@seld.be",
790
+
"homepage": "http://seld.be"
791
+
},
792
+
{
793
+
"name": "Rob Bast",
794
+
"email": "rob.bast@gmail.com",
795
+
"homepage": "http://robbast.nl"
796
+
}
797
+
],
798
+
"description": "SPDX licenses list and validation library.",
799
+
"keywords": [
800
+
"license",
801
+
"spdx",
802
+
"validator"
803
+
],
804
+
"support": {
805
+
"irc": "ircs://irc.libera.chat:6697/composer",
806
+
"issues": "https://github.com/composer/spdx-licenses/issues",
807
+
"source": "https://github.com/composer/spdx-licenses/tree/1.5.9"
808
+
},
809
+
"funding": [
810
+
{
811
+
"url": "https://packagist.com",
812
+
"type": "custom"
813
+
},
814
+
{
815
+
"url": "https://github.com/composer",
816
+
"type": "github"
817
+
},
818
+
{
819
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
820
+
"type": "tidelift"
821
+
}
822
+
],
823
+
"time": "2025-05-12T21:07:07+00:00"
824
+
},
825
+
{
826
+
"name": "composer/xdebug-handler",
827
+
"version": "3.0.5",
828
+
"source": {
829
+
"type": "git",
830
+
"url": "https://github.com/composer/xdebug-handler.git",
831
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
832
+
},
833
+
"dist": {
834
+
"type": "zip",
835
+
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
836
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
837
+
"shasum": ""
838
+
},
839
+
"require": {
840
+
"composer/pcre": "^1 || ^2 || ^3",
841
+
"php": "^7.2.5 || ^8.0",
842
+
"psr/log": "^1 || ^2 || ^3"
843
+
},
844
+
"require-dev": {
845
+
"phpstan/phpstan": "^1.0",
846
+
"phpstan/phpstan-strict-rules": "^1.1",
847
+
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
848
+
},
849
+
"type": "library",
850
+
"autoload": {
851
+
"psr-4": {
852
+
"Composer\\XdebugHandler\\": "src"
853
+
}
854
+
},
855
+
"notification-url": "https://packagist.org/downloads/",
856
+
"license": [
857
+
"MIT"
858
+
],
859
+
"authors": [
860
+
{
861
+
"name": "John Stevenson",
862
+
"email": "john-stevenson@blueyonder.co.uk"
863
+
}
864
+
],
865
+
"description": "Restarts a process without Xdebug.",
866
+
"keywords": [
867
+
"Xdebug",
868
+
"performance"
869
+
],
870
+
"support": {
871
+
"irc": "ircs://irc.libera.chat:6697/composer",
872
+
"issues": "https://github.com/composer/xdebug-handler/issues",
873
+
"source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
874
+
},
875
+
"funding": [
876
+
{
877
+
"url": "https://packagist.com",
878
+
"type": "custom"
879
+
},
880
+
{
881
+
"url": "https://github.com/composer",
882
+
"type": "github"
883
+
},
884
+
{
885
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
886
+
"type": "tidelift"
887
+
}
888
+
],
889
+
"time": "2024-05-06T16:37:16+00:00"
890
+
},
891
+
{
892
+
"name": "dealerdirect/phpcodesniffer-composer-installer",
893
+
"version": "v1.2.0",
894
+
"source": {
895
+
"type": "git",
896
+
"url": "https://github.com/PHPCSStandards/composer-installer.git",
897
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
898
+
},
899
+
"dist": {
900
+
"type": "zip",
901
+
"url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
902
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
903
+
"shasum": ""
904
+
},
905
+
"require": {
906
+
"composer-plugin-api": "^2.2",
907
+
"php": ">=5.4",
908
+
"squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
909
+
},
910
+
"require-dev": {
911
+
"composer/composer": "^2.2",
912
+
"ext-json": "*",
913
+
"ext-zip": "*",
914
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
915
+
"phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
916
+
"yoast/phpunit-polyfills": "^1.0"
917
+
},
918
+
"type": "composer-plugin",
919
+
"extra": {
920
+
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
921
+
},
922
+
"autoload": {
923
+
"psr-4": {
924
+
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
925
+
}
926
+
},
927
+
"notification-url": "https://packagist.org/downloads/",
928
+
"license": [
929
+
"MIT"
930
+
],
931
+
"authors": [
932
+
{
933
+
"name": "Franck Nijhof",
934
+
"email": "opensource@frenck.dev",
935
+
"homepage": "https://frenck.dev",
936
+
"role": "Open source developer"
937
+
},
938
+
{
939
+
"name": "Contributors",
940
+
"homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
941
+
}
942
+
],
943
+
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
944
+
"keywords": [
945
+
"PHPCodeSniffer",
946
+
"PHP_CodeSniffer",
947
+
"code quality",
948
+
"codesniffer",
949
+
"composer",
950
+
"installer",
951
+
"phpcbf",
952
+
"phpcs",
953
+
"plugin",
954
+
"qa",
955
+
"quality",
956
+
"standard",
957
+
"standards",
958
+
"style guide",
959
+
"stylecheck",
960
+
"tests"
961
+
],
962
+
"support": {
963
+
"issues": "https://github.com/PHPCSStandards/composer-installer/issues",
964
+
"security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
965
+
"source": "https://github.com/PHPCSStandards/composer-installer"
966
+
},
967
+
"funding": [
968
+
{
969
+
"url": "https://github.com/PHPCSStandards",
970
+
"type": "github"
971
+
},
972
+
{
973
+
"url": "https://github.com/jrfnl",
974
+
"type": "github"
975
+
},
976
+
{
977
+
"url": "https://opencollective.com/php_codesniffer",
978
+
"type": "open_collective"
979
+
},
980
+
{
981
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
982
+
"type": "thanks_dev"
983
+
}
984
+
],
985
+
"time": "2025-11-11T04:32:07+00:00"
986
+
},
987
+
{
988
+
"name": "doctrine/deprecations",
989
+
"version": "1.1.5",
990
+
"source": {
991
+
"type": "git",
992
+
"url": "https://github.com/doctrine/deprecations.git",
993
+
"reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
994
+
},
995
+
"dist": {
996
+
"type": "zip",
997
+
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
998
+
"reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
999
+
"shasum": ""
1000
+
},
1001
+
"require": {
1002
+
"php": "^7.1 || ^8.0"
1003
+
},
1004
+
"conflict": {
1005
+
"phpunit/phpunit": "<=7.5 || >=13"
1006
+
},
1007
+
"require-dev": {
1008
+
"doctrine/coding-standard": "^9 || ^12 || ^13",
1009
+
"phpstan/phpstan": "1.4.10 || 2.1.11",
1010
+
"phpstan/phpstan-phpunit": "^1.0 || ^2",
1011
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
1012
+
"psr/log": "^1 || ^2 || ^3"
1013
+
},
1014
+
"suggest": {
1015
+
"psr/log": "Allows logging deprecations via PSR-3 logger implementation"
1016
+
},
1017
+
"type": "library",
1018
+
"autoload": {
1019
+
"psr-4": {
1020
+
"Doctrine\\Deprecations\\": "src"
1021
+
}
1022
+
},
1023
+
"notification-url": "https://packagist.org/downloads/",
1024
+
"license": [
1025
+
"MIT"
1026
+
],
1027
+
"description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
1028
+
"homepage": "https://www.doctrine-project.org/",
1029
+
"support": {
1030
+
"issues": "https://github.com/doctrine/deprecations/issues",
1031
+
"source": "https://github.com/doctrine/deprecations/tree/1.1.5"
1032
+
},
1033
+
"time": "2025-04-07T20:06:18+00:00"
1034
+
},
1035
+
{
1036
+
"name": "felixfbecker/advanced-json-rpc",
1037
+
"version": "v3.2.1",
1038
+
"source": {
1039
+
"type": "git",
1040
+
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
1041
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
1042
+
},
1043
+
"dist": {
1044
+
"type": "zip",
1045
+
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
1046
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
1047
+
"shasum": ""
1048
+
},
1049
+
"require": {
1050
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
1051
+
"php": "^7.1 || ^8.0",
1052
+
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
1053
+
},
1054
+
"require-dev": {
1055
+
"phpunit/phpunit": "^7.0 || ^8.0"
1056
+
},
1057
+
"type": "library",
1058
+
"autoload": {
1059
+
"psr-4": {
1060
+
"AdvancedJsonRpc\\": "lib/"
1061
+
}
1062
+
},
1063
+
"notification-url": "https://packagist.org/downloads/",
1064
+
"license": [
1065
+
"ISC"
1066
+
],
1067
+
"authors": [
1068
+
{
1069
+
"name": "Felix Becker",
1070
+
"email": "felix.b@outlook.com"
1071
+
}
1072
+
],
1073
+
"description": "A more advanced JSONRPC implementation",
1074
+
"support": {
1075
+
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
1076
+
"source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
1077
+
},
1078
+
"time": "2021-06-11T22:34:44+00:00"
1079
+
},
1080
+
{
1081
+
"name": "mediawiki/mediawiki-codesniffer",
1082
+
"version": "v48.0.0",
1083
+
"source": {
1084
+
"type": "git",
1085
+
"url": "https://github.com/wikimedia/mediawiki-tools-codesniffer.git",
1086
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212"
1087
+
},
1088
+
"dist": {
1089
+
"type": "zip",
1090
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-codesniffer/zipball/6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
1091
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
1092
+
"shasum": ""
1093
+
},
1094
+
"require": {
1095
+
"composer/semver": "^3.4.2",
1096
+
"composer/spdx-licenses": "~1.5.2",
1097
+
"ext-json": "*",
1098
+
"ext-mbstring": "*",
1099
+
"php": ">=8.1.0",
1100
+
"phpcsstandards/phpcsextra": "1.4.0",
1101
+
"squizlabs/php_codesniffer": "3.13.2"
1102
+
},
1103
+
"require-dev": {
1104
+
"ext-dom": "*",
1105
+
"mediawiki/mediawiki-phan-config": "0.17.0",
1106
+
"mediawiki/minus-x": "1.1.3",
1107
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
1108
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
1109
+
"phpunit/phpunit": "9.6.21"
1110
+
},
1111
+
"type": "phpcodesniffer-standard",
1112
+
"autoload": {
1113
+
"psr-4": {
1114
+
"MediaWiki\\Sniffs\\": "MediaWiki/Sniffs/"
1115
+
}
1116
+
},
1117
+
"notification-url": "https://packagist.org/downloads/",
1118
+
"license": [
1119
+
"GPL-2.0-or-later"
1120
+
],
1121
+
"description": "MediaWiki CodeSniffer Standards",
1122
+
"homepage": "https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP",
1123
+
"keywords": [
1124
+
"codesniffer",
1125
+
"mediawiki"
1126
+
],
1127
+
"support": {
1128
+
"source": "https://github.com/wikimedia/mediawiki-tools-codesniffer/tree/v48.0.0"
1129
+
},
1130
+
"time": "2025-09-04T20:12:57+00:00"
1131
+
},
1132
+
{
1133
+
"name": "mediawiki/mediawiki-phan-config",
1134
+
"version": "0.17.0",
1135
+
"source": {
1136
+
"type": "git",
1137
+
"url": "https://github.com/wikimedia/mediawiki-tools-phan.git",
1138
+
"reference": "5e98f0ae2755650c6bebb682c0fcc06b371745c9"
1139
+
},
1140
+
"dist": {
1141
+
"type": "zip",
1142
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-phan/zipball/5e98f0ae2755650c6bebb682c0fcc06b371745c9",
1143
+
"reference": "5e98f0ae2755650c6bebb682c0fcc06b371745c9",
1144
+
"shasum": ""
1145
+
},
1146
+
"require": {
1147
+
"mediawiki/phan-taint-check-plugin": "7.0.0",
1148
+
"phan/phan": "5.5.1",
1149
+
"php": ">=8.1.0"
1150
+
},
1151
+
"require-dev": {
1152
+
"mediawiki/mediawiki-codesniffer": "47.0.0",
1153
+
"mediawiki/minus-x": "1.1.3",
1154
+
"ockcyp/covers-validator": "1.6.0",
1155
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
1156
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
1157
+
"phpunit/phpunit": "9.6.21"
1158
+
},
1159
+
"type": "library",
1160
+
"autoload": {
1161
+
"psr-4": {
1162
+
"MediaWikiPhanConfig\\": "src/"
1163
+
}
1164
+
},
1165
+
"notification-url": "https://packagist.org/downloads/",
1166
+
"license": [
1167
+
"GPL-2.0-or-later"
1168
+
],
1169
+
"authors": [
1170
+
{
1171
+
"name": "MediaWiki developers",
1172
+
"email": "wikitech-l@lists.wikimedia.org"
1173
+
}
1174
+
],
1175
+
"description": "Standard MediaWiki phan configuration",
1176
+
"homepage": "https://www.mediawiki.org/wiki/Continuous_integration/Phan",
1177
+
"support": {
1178
+
"source": "https://github.com/wikimedia/mediawiki-tools-phan/tree/0.17.0"
1179
+
},
1180
+
"time": "2025-08-07T13:01:24+00:00"
1181
+
},
1182
+
{
1183
+
"name": "mediawiki/minus-x",
1184
+
"version": "1.1.3",
1185
+
"source": {
1186
+
"type": "git",
1187
+
"url": "https://github.com/wikimedia/mediawiki-tools-minus-x.git",
1188
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd"
1189
+
},
1190
+
"dist": {
1191
+
"type": "zip",
1192
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-minus-x/zipball/553f920ad53f78b33ea654f8623c2a50b5ac7efd",
1193
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd",
1194
+
"shasum": ""
1195
+
},
1196
+
"require": {
1197
+
"php": ">=7.2.9",
1198
+
"symfony/console": "^3.3.5 || ^4 || ^5 || ^6 || ^7"
1199
+
},
1200
+
"require-dev": {
1201
+
"mediawiki/mediawiki-codesniffer": "43.0.0",
1202
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
1203
+
"php-parallel-lint/php-parallel-lint": "1.3.2"
1204
+
},
1205
+
"bin": [
1206
+
"bin/minus-x"
1207
+
],
1208
+
"type": "library",
1209
+
"autoload": {
1210
+
"psr-4": {
1211
+
"MediaWiki\\MinusX\\": "src/"
1212
+
}
1213
+
},
1214
+
"notification-url": "https://packagist.org/downloads/",
1215
+
"license": [
1216
+
"GPL-3.0-or-later"
1217
+
],
1218
+
"authors": [
1219
+
{
1220
+
"name": "Kunal Mehta",
1221
+
"email": "legoktm@member.fsf.org"
1222
+
}
1223
+
],
1224
+
"description": "Removes executable bit from files that shouldn't be executable",
1225
+
"homepage": "https://www.mediawiki.org/wiki/MinusX",
1226
+
"support": {
1227
+
"source": "https://github.com/wikimedia/mediawiki-tools-minus-x/tree/1.1.3"
1228
+
},
1229
+
"time": "2024-05-04T16:06:11+00:00"
1230
+
},
1231
+
{
1232
+
"name": "mediawiki/phan-taint-check-plugin",
1233
+
"version": "7.0.0",
1234
+
"source": {
1235
+
"type": "git",
1236
+
"url": "https://github.com/wikimedia/mediawiki-tools-phan-SecurityCheckPlugin.git",
1237
+
"reference": "1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55"
1238
+
},
1239
+
"dist": {
1240
+
"type": "zip",
1241
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-phan-SecurityCheckPlugin/zipball/1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55",
1242
+
"reference": "1d70b8bdbc0fcc048f204a86e07a8ac2fa324c55",
1243
+
"shasum": ""
1244
+
},
1245
+
"require": {
1246
+
"ext-json": "*",
1247
+
"phan/phan": "5.5.1",
1248
+
"php": ">=8.1.0"
1249
+
},
1250
+
"require-dev": {
1251
+
"ext-pdo": "*",
1252
+
"mediawiki/mediawiki-codesniffer": "47.0.0",
1253
+
"mediawiki/minus-x": "1.1.3",
1254
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
1255
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
1256
+
"phpunit/phpunit": "9.6.21"
1257
+
},
1258
+
"suggest": {
1259
+
"ext-mysqli": "Used for some mysqli function tests"
1260
+
},
1261
+
"bin": [
1262
+
"scripts/seccheck"
1263
+
],
1264
+
"type": "library",
1265
+
"autoload": {
1266
+
"psr-4": {
1267
+
"SecurityCheckPlugin\\": "src/"
1268
+
}
1269
+
},
1270
+
"notification-url": "https://packagist.org/downloads/",
1271
+
"license": [
1272
+
"GPL-2.0-or-later"
1273
+
],
1274
+
"authors": [
1275
+
{
1276
+
"name": "Brian Wolff",
1277
+
"email": "bawolff+wn@gmail.com"
1278
+
},
1279
+
{
1280
+
"name": "Daimona Eaytoy",
1281
+
"email": "daimona.wiki@gmail.com"
1282
+
}
1283
+
],
1284
+
"description": "A Phan plugin to do security checking",
1285
+
"keywords": [
1286
+
"analyzer",
1287
+
"phan",
1288
+
"php",
1289
+
"security",
1290
+
"static",
1291
+
"taint"
1292
+
],
1293
+
"support": {
1294
+
"irc": "irc://irc.libera.chat/wikimedia-dev",
1295
+
"issues": "https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=securitycheckplugin",
1296
+
"source": "https://phabricator.wikimedia.org/diffusion/MTPS/",
1297
+
"wiki": "https://www.mediawiki.org/wiki/SecurityCheckPlugin"
1298
+
},
1299
+
"time": "2025-08-07T00:01:54+00:00"
1300
+
},
1301
+
{
1302
+
"name": "microsoft/tolerant-php-parser",
1303
+
"version": "v0.1.2",
1304
+
"source": {
1305
+
"type": "git",
1306
+
"url": "https://github.com/microsoft/tolerant-php-parser.git",
1307
+
"reference": "3eccfd273323aaf69513e2f1c888393f5947804b"
1308
+
},
1309
+
"dist": {
1310
+
"type": "zip",
1311
+
"url": "https://api.github.com/repos/microsoft/tolerant-php-parser/zipball/3eccfd273323aaf69513e2f1c888393f5947804b",
1312
+
"reference": "3eccfd273323aaf69513e2f1c888393f5947804b",
1313
+
"shasum": ""
1314
+
},
1315
+
"require": {
1316
+
"php": ">=7.2"
1317
+
},
1318
+
"require-dev": {
1319
+
"phpunit/phpunit": "^8.5.15"
1320
+
},
1321
+
"type": "library",
1322
+
"autoload": {
1323
+
"psr-4": {
1324
+
"Microsoft\\PhpParser\\": [
1325
+
"src/"
1326
+
]
1327
+
}
1328
+
},
1329
+
"notification-url": "https://packagist.org/downloads/",
1330
+
"license": [
1331
+
"MIT"
1332
+
],
1333
+
"authors": [
1334
+
{
1335
+
"name": "Rob Lourens",
1336
+
"email": "roblou@microsoft.com"
1337
+
}
1338
+
],
1339
+
"description": "Tolerant PHP-to-AST parser designed for IDE usage scenarios",
1340
+
"support": {
1341
+
"issues": "https://github.com/microsoft/tolerant-php-parser/issues",
1342
+
"source": "https://github.com/microsoft/tolerant-php-parser/tree/v0.1.2"
1343
+
},
1344
+
"time": "2022-10-05T17:30:19+00:00"
1345
+
},
1346
+
{
1347
+
"name": "netresearch/jsonmapper",
1348
+
"version": "v4.5.0",
1349
+
"source": {
1350
+
"type": "git",
1351
+
"url": "https://github.com/cweiske/jsonmapper.git",
1352
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5"
1353
+
},
1354
+
"dist": {
1355
+
"type": "zip",
1356
+
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
1357
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
1358
+
"shasum": ""
1359
+
},
1360
+
"require": {
1361
+
"ext-json": "*",
1362
+
"ext-pcre": "*",
1363
+
"ext-reflection": "*",
1364
+
"ext-spl": "*",
1365
+
"php": ">=7.1"
1366
+
},
1367
+
"require-dev": {
1368
+
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
1369
+
"squizlabs/php_codesniffer": "~3.5"
1370
+
},
1371
+
"type": "library",
1372
+
"autoload": {
1373
+
"psr-0": {
1374
+
"JsonMapper": "src/"
1375
+
}
1376
+
},
1377
+
"notification-url": "https://packagist.org/downloads/",
1378
+
"license": [
1379
+
"OSL-3.0"
1380
+
],
1381
+
"authors": [
1382
+
{
1383
+
"name": "Christian Weiske",
1384
+
"email": "cweiske@cweiske.de",
1385
+
"homepage": "http://github.com/cweiske/jsonmapper/",
1386
+
"role": "Developer"
1387
+
}
1388
+
],
1389
+
"description": "Map nested JSON structures onto PHP classes",
1390
+
"support": {
1391
+
"email": "cweiske@cweiske.de",
1392
+
"issues": "https://github.com/cweiske/jsonmapper/issues",
1393
+
"source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0"
1394
+
},
1395
+
"time": "2024-09-08T10:13:13+00:00"
1396
+
},
1397
+
{
1398
+
"name": "phan/phan",
1399
+
"version": "5.5.1",
1400
+
"source": {
1401
+
"type": "git",
1402
+
"url": "https://github.com/phan/phan.git",
1403
+
"reference": "2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c"
1404
+
},
1405
+
"dist": {
1406
+
"type": "zip",
1407
+
"url": "https://api.github.com/repos/phan/phan/zipball/2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c",
1408
+
"reference": "2b6a846eff1a65dd0229ffa2370b4c35a96b7f3c",
1409
+
"shasum": ""
1410
+
},
1411
+
"require": {
1412
+
"composer/semver": "^1.4|^2.0|^3.0",
1413
+
"composer/xdebug-handler": "^2.0|^3.0",
1414
+
"ext-filter": "*",
1415
+
"ext-json": "*",
1416
+
"ext-tokenizer": "*",
1417
+
"felixfbecker/advanced-json-rpc": "^3.0.4",
1418
+
"microsoft/tolerant-php-parser": "0.1.2",
1419
+
"netresearch/jsonmapper": "^1.6.0|^2.0|^3.0|^4.0|^5.0",
1420
+
"php": "^7.2.0|^8.0.0",
1421
+
"sabre/event": "^5.1.3",
1422
+
"symfony/console": "^3.2|^4.0|^5.0|^6.0|^7.0",
1423
+
"symfony/polyfill-mbstring": "^1.11.0",
1424
+
"symfony/polyfill-php80": "^1.20.0",
1425
+
"tysonandre/var_representation_polyfill": "^0.0.2|^0.1.0"
1426
+
},
1427
+
"require-dev": {
1428
+
"phpunit/phpunit": "^8.5.0"
1429
+
},
1430
+
"suggest": {
1431
+
"ext-ast": "Needed for parsing ASTs (unless --use-fallback-parser is used). 1.0.1+ is needed, 1.0.16+ is recommended.",
1432
+
"ext-iconv": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
1433
+
"ext-igbinary": "Improves performance of polyfill when ext-ast is unavailable",
1434
+
"ext-mbstring": "Either iconv or mbstring is needed to ensure issue messages are valid utf-8",
1435
+
"ext-tokenizer": "Needed for fallback/polyfill parser support and file/line-based suppressions.",
1436
+
"ext-var_representation": "Suggested for converting values to strings in issue messages"
1437
+
},
1438
+
"bin": [
1439
+
"phan",
1440
+
"phan_client",
1441
+
"tocheckstyle"
1442
+
],
1443
+
"type": "project",
1444
+
"autoload": {
1445
+
"psr-4": {
1446
+
"Phan\\": "src/Phan"
1447
+
}
1448
+
},
1449
+
"notification-url": "https://packagist.org/downloads/",
1450
+
"license": [
1451
+
"MIT"
1452
+
],
1453
+
"authors": [
1454
+
{
1455
+
"name": "Tyson Andre"
1456
+
},
1457
+
{
1458
+
"name": "Rasmus Lerdorf"
1459
+
},
1460
+
{
1461
+
"name": "Andrew S. Morrison"
1462
+
}
1463
+
],
1464
+
"description": "A static analyzer for PHP",
1465
+
"keywords": [
1466
+
"analyzer",
1467
+
"php",
1468
+
"static",
1469
+
"static analysis"
1470
+
],
1471
+
"support": {
1472
+
"issues": "https://github.com/phan/phan/issues",
1473
+
"source": "https://github.com/phan/phan/tree/5.5.1"
1474
+
},
1475
+
"time": "2025-08-05T20:10:06+00:00"
1476
+
},
1477
+
{
1478
+
"name": "php-parallel-lint/php-console-color",
1479
+
"version": "v1.0.1",
1480
+
"source": {
1481
+
"type": "git",
1482
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
1483
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88"
1484
+
},
1485
+
"dist": {
1486
+
"type": "zip",
1487
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/7adfefd530aa2d7570ba87100a99e2483a543b88",
1488
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88",
1489
+
"shasum": ""
1490
+
},
1491
+
"require": {
1492
+
"php": ">=5.3.2"
1493
+
},
1494
+
"replace": {
1495
+
"jakub-onderka/php-console-color": "*"
1496
+
},
1497
+
"require-dev": {
1498
+
"php-parallel-lint/php-code-style": "^2.0",
1499
+
"php-parallel-lint/php-parallel-lint": "^1.0",
1500
+
"php-parallel-lint/php-var-dump-check": "0.*",
1501
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1502
+
},
1503
+
"type": "library",
1504
+
"autoload": {
1505
+
"psr-4": {
1506
+
"PHP_Parallel_Lint\\PhpConsoleColor\\": "src/"
1507
+
}
1508
+
},
1509
+
"notification-url": "https://packagist.org/downloads/",
1510
+
"license": [
1511
+
"BSD-2-Clause"
1512
+
],
1513
+
"authors": [
1514
+
{
1515
+
"name": "Jakub Onderka",
1516
+
"email": "jakub.onderka@gmail.com"
1517
+
}
1518
+
],
1519
+
"description": "Simple library for creating colored console ouput.",
1520
+
"support": {
1521
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
1522
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/v1.0.1"
1523
+
},
1524
+
"time": "2021-12-25T06:49:29+00:00"
1525
+
},
1526
+
{
1527
+
"name": "php-parallel-lint/php-console-highlighter",
1528
+
"version": "v1.0.0",
1529
+
"source": {
1530
+
"type": "git",
1531
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
1532
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d"
1533
+
},
1534
+
"dist": {
1535
+
"type": "zip",
1536
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/5b4803384d3303cf8e84141039ef56c8a123138d",
1537
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d",
1538
+
"shasum": ""
1539
+
},
1540
+
"require": {
1541
+
"ext-tokenizer": "*",
1542
+
"php": ">=5.3.2",
1543
+
"php-parallel-lint/php-console-color": "^1.0.1"
1544
+
},
1545
+
"replace": {
1546
+
"jakub-onderka/php-console-highlighter": "*"
1547
+
},
1548
+
"require-dev": {
1549
+
"php-parallel-lint/php-code-style": "^2.0",
1550
+
"php-parallel-lint/php-parallel-lint": "^1.0",
1551
+
"php-parallel-lint/php-var-dump-check": "0.*",
1552
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1553
+
},
1554
+
"type": "library",
1555
+
"autoload": {
1556
+
"psr-4": {
1557
+
"PHP_Parallel_Lint\\PhpConsoleHighlighter\\": "src/"
1558
+
}
1559
+
},
1560
+
"notification-url": "https://packagist.org/downloads/",
1561
+
"license": [
1562
+
"MIT"
1563
+
],
1564
+
"authors": [
1565
+
{
1566
+
"name": "Jakub Onderka",
1567
+
"email": "acci@acci.cz",
1568
+
"homepage": "http://www.acci.cz/"
1569
+
}
1570
+
],
1571
+
"description": "Highlight PHP code in terminal",
1572
+
"support": {
1573
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
1574
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/v1.0.0"
1575
+
},
1576
+
"time": "2022-02-18T08:23:19+00:00"
1577
+
},
1578
+
{
1579
+
"name": "php-parallel-lint/php-parallel-lint",
1580
+
"version": "v1.4.0",
1581
+
"source": {
1582
+
"type": "git",
1583
+
"url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
1584
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e"
1585
+
},
1586
+
"dist": {
1587
+
"type": "zip",
1588
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
1589
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e",
1590
+
"shasum": ""
1591
+
},
1592
+
"require": {
1593
+
"ext-json": "*",
1594
+
"php": ">=5.3.0"
1595
+
},
1596
+
"replace": {
1597
+
"grogy/php-parallel-lint": "*",
1598
+
"jakub-onderka/php-parallel-lint": "*"
1599
+
},
1600
+
"require-dev": {
1601
+
"nette/tester": "^1.3 || ^2.0",
1602
+
"php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
1603
+
"squizlabs/php_codesniffer": "^3.6"
1604
+
},
1605
+
"suggest": {
1606
+
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
1607
+
},
1608
+
"bin": [
1609
+
"parallel-lint"
1610
+
],
1611
+
"type": "library",
1612
+
"autoload": {
1613
+
"classmap": [
1614
+
"./src/"
1615
+
]
1616
+
},
1617
+
"notification-url": "https://packagist.org/downloads/",
1618
+
"license": [
1619
+
"BSD-2-Clause"
1620
+
],
1621
+
"authors": [
1622
+
{
1623
+
"name": "Jakub Onderka",
1624
+
"email": "ahoj@jakubonderka.cz"
1625
+
}
1626
+
],
1627
+
"description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
1628
+
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
1629
+
"keywords": [
1630
+
"lint",
1631
+
"static analysis"
1632
+
],
1633
+
"support": {
1634
+
"issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
1635
+
"source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
1636
+
},
1637
+
"time": "2024-03-27T12:14:49+00:00"
1638
+
},
1639
+
{
1640
+
"name": "phpcsstandards/phpcsextra",
1641
+
"version": "1.4.0",
1642
+
"source": {
1643
+
"type": "git",
1644
+
"url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
1645
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca"
1646
+
},
1647
+
"dist": {
1648
+
"type": "zip",
1649
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/fa4b8d051e278072928e32d817456a7fdb57b6ca",
1650
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca",
1651
+
"shasum": ""
1652
+
},
1653
+
"require": {
1654
+
"php": ">=5.4",
1655
+
"phpcsstandards/phpcsutils": "^1.1.0",
1656
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
1657
+
},
1658
+
"require-dev": {
1659
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1660
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
1661
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1662
+
"phpcsstandards/phpcsdevtools": "^1.2.1",
1663
+
"phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1664
+
},
1665
+
"type": "phpcodesniffer-standard",
1666
+
"extra": {
1667
+
"branch-alias": {
1668
+
"dev-stable": "1.x-dev",
1669
+
"dev-develop": "1.x-dev"
1670
+
}
1671
+
},
1672
+
"notification-url": "https://packagist.org/downloads/",
1673
+
"license": [
1674
+
"LGPL-3.0-or-later"
1675
+
],
1676
+
"authors": [
1677
+
{
1678
+
"name": "Juliette Reinders Folmer",
1679
+
"homepage": "https://github.com/jrfnl",
1680
+
"role": "lead"
1681
+
},
1682
+
{
1683
+
"name": "Contributors",
1684
+
"homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
1685
+
}
1686
+
],
1687
+
"description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
1688
+
"keywords": [
1689
+
"PHP_CodeSniffer",
1690
+
"phpcbf",
1691
+
"phpcodesniffer-standard",
1692
+
"phpcs",
1693
+
"standards",
1694
+
"static analysis"
1695
+
],
1696
+
"support": {
1697
+
"issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
1698
+
"security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
1699
+
"source": "https://github.com/PHPCSStandards/PHPCSExtra"
1700
+
},
1701
+
"funding": [
1702
+
{
1703
+
"url": "https://github.com/PHPCSStandards",
1704
+
"type": "github"
1705
+
},
1706
+
{
1707
+
"url": "https://github.com/jrfnl",
1708
+
"type": "github"
1709
+
},
1710
+
{
1711
+
"url": "https://opencollective.com/php_codesniffer",
1712
+
"type": "open_collective"
1713
+
},
1714
+
{
1715
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1716
+
"type": "thanks_dev"
1717
+
}
1718
+
],
1719
+
"time": "2025-06-14T07:40:39+00:00"
1720
+
},
1721
+
{
1722
+
"name": "phpcsstandards/phpcsutils",
1723
+
"version": "1.1.1",
1724
+
"source": {
1725
+
"type": "git",
1726
+
"url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
1727
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd"
1728
+
},
1729
+
"dist": {
1730
+
"type": "zip",
1731
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1732
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1733
+
"shasum": ""
1734
+
},
1735
+
"require": {
1736
+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
1737
+
"php": ">=5.4",
1738
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
1739
+
},
1740
+
"require-dev": {
1741
+
"ext-filter": "*",
1742
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1743
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
1744
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1745
+
"yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
1746
+
},
1747
+
"type": "phpcodesniffer-standard",
1748
+
"extra": {
1749
+
"branch-alias": {
1750
+
"dev-stable": "1.x-dev",
1751
+
"dev-develop": "1.x-dev"
1752
+
}
1753
+
},
1754
+
"autoload": {
1755
+
"classmap": [
1756
+
"PHPCSUtils/"
1757
+
]
1758
+
},
1759
+
"notification-url": "https://packagist.org/downloads/",
1760
+
"license": [
1761
+
"LGPL-3.0-or-later"
1762
+
],
1763
+
"authors": [
1764
+
{
1765
+
"name": "Juliette Reinders Folmer",
1766
+
"homepage": "https://github.com/jrfnl",
1767
+
"role": "lead"
1768
+
},
1769
+
{
1770
+
"name": "Contributors",
1771
+
"homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
1772
+
}
1773
+
],
1774
+
"description": "A suite of utility functions for use with PHP_CodeSniffer",
1775
+
"homepage": "https://phpcsutils.com/",
1776
+
"keywords": [
1777
+
"PHP_CodeSniffer",
1778
+
"phpcbf",
1779
+
"phpcodesniffer-standard",
1780
+
"phpcs",
1781
+
"phpcs3",
1782
+
"phpcs4",
1783
+
"standards",
1784
+
"static analysis",
1785
+
"tokens",
1786
+
"utility"
1787
+
],
1788
+
"support": {
1789
+
"docs": "https://phpcsutils.com/",
1790
+
"issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
1791
+
"security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
1792
+
"source": "https://github.com/PHPCSStandards/PHPCSUtils"
1793
+
},
1794
+
"funding": [
1795
+
{
1796
+
"url": "https://github.com/PHPCSStandards",
1797
+
"type": "github"
1798
+
},
1799
+
{
1800
+
"url": "https://github.com/jrfnl",
1801
+
"type": "github"
1802
+
},
1803
+
{
1804
+
"url": "https://opencollective.com/php_codesniffer",
1805
+
"type": "open_collective"
1806
+
},
1807
+
{
1808
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1809
+
"type": "thanks_dev"
1810
+
}
1811
+
],
1812
+
"time": "2025-08-10T01:04:45+00:00"
1813
+
},
1814
+
{
1815
+
"name": "phpdocumentor/reflection-common",
1816
+
"version": "2.2.0",
1817
+
"source": {
1818
+
"type": "git",
1819
+
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
1820
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
1821
+
},
1822
+
"dist": {
1823
+
"type": "zip",
1824
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1825
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1826
+
"shasum": ""
1827
+
},
1828
+
"require": {
1829
+
"php": "^7.2 || ^8.0"
1830
+
},
1831
+
"type": "library",
1832
+
"extra": {
1833
+
"branch-alias": {
1834
+
"dev-2.x": "2.x-dev"
1835
+
}
1836
+
},
1837
+
"autoload": {
1838
+
"psr-4": {
1839
+
"phpDocumentor\\Reflection\\": "src/"
1840
+
}
1841
+
},
1842
+
"notification-url": "https://packagist.org/downloads/",
1843
+
"license": [
1844
+
"MIT"
1845
+
],
1846
+
"authors": [
1847
+
{
1848
+
"name": "Jaap van Otterdijk",
1849
+
"email": "opensource@ijaap.nl"
1850
+
}
1851
+
],
1852
+
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1853
+
"homepage": "http://www.phpdoc.org",
1854
+
"keywords": [
1855
+
"FQSEN",
1856
+
"phpDocumentor",
1857
+
"phpdoc",
1858
+
"reflection",
1859
+
"static analysis"
1860
+
],
1861
+
"support": {
1862
+
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
1863
+
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
1864
+
},
1865
+
"time": "2020-06-27T09:03:43+00:00"
1866
+
},
1867
+
{
1868
+
"name": "phpdocumentor/reflection-docblock",
1869
+
"version": "5.6.6",
1870
+
"source": {
1871
+
"type": "git",
1872
+
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1873
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
1874
+
},
1875
+
"dist": {
1876
+
"type": "zip",
1877
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1878
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1879
+
"shasum": ""
1880
+
},
1881
+
"require": {
1882
+
"doctrine/deprecations": "^1.1",
1883
+
"ext-filter": "*",
1884
+
"php": "^7.4 || ^8.0",
1885
+
"phpdocumentor/reflection-common": "^2.2",
1886
+
"phpdocumentor/type-resolver": "^1.7",
1887
+
"phpstan/phpdoc-parser": "^1.7|^2.0",
1888
+
"webmozart/assert": "^1.9.1 || ^2"
1889
+
},
1890
+
"require-dev": {
1891
+
"mockery/mockery": "~1.3.5 || ~1.6.0",
1892
+
"phpstan/extension-installer": "^1.1",
1893
+
"phpstan/phpstan": "^1.8",
1894
+
"phpstan/phpstan-mockery": "^1.1",
1895
+
"phpstan/phpstan-webmozart-assert": "^1.2",
1896
+
"phpunit/phpunit": "^9.5",
1897
+
"psalm/phar": "^5.26"
1898
+
},
1899
+
"type": "library",
1900
+
"extra": {
1901
+
"branch-alias": {
1902
+
"dev-master": "5.x-dev"
1903
+
}
1904
+
},
1905
+
"autoload": {
1906
+
"psr-4": {
1907
+
"phpDocumentor\\Reflection\\": "src"
1908
+
}
1909
+
},
1910
+
"notification-url": "https://packagist.org/downloads/",
1911
+
"license": [
1912
+
"MIT"
1913
+
],
1914
+
"authors": [
1915
+
{
1916
+
"name": "Mike van Riel",
1917
+
"email": "me@mikevanriel.com"
1918
+
},
1919
+
{
1920
+
"name": "Jaap van Otterdijk",
1921
+
"email": "opensource@ijaap.nl"
1922
+
}
1923
+
],
1924
+
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
1925
+
"support": {
1926
+
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
1927
+
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
1928
+
},
1929
+
"time": "2025-12-22T21:13:58+00:00"
1930
+
},
1931
+
{
1932
+
"name": "phpdocumentor/type-resolver",
1933
+
"version": "1.12.0",
1934
+
"source": {
1935
+
"type": "git",
1936
+
"url": "https://github.com/phpDocumentor/TypeResolver.git",
1937
+
"reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
1938
+
},
1939
+
"dist": {
1940
+
"type": "zip",
1941
+
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
1942
+
"reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
1943
+
"shasum": ""
1944
+
},
1945
+
"require": {
1946
+
"doctrine/deprecations": "^1.0",
1947
+
"php": "^7.3 || ^8.0",
1948
+
"phpdocumentor/reflection-common": "^2.0",
1949
+
"phpstan/phpdoc-parser": "^1.18|^2.0"
1950
+
},
1951
+
"require-dev": {
1952
+
"ext-tokenizer": "*",
1953
+
"phpbench/phpbench": "^1.2",
1954
+
"phpstan/extension-installer": "^1.1",
1955
+
"phpstan/phpstan": "^1.8",
1956
+
"phpstan/phpstan-phpunit": "^1.1",
1957
+
"phpunit/phpunit": "^9.5",
1958
+
"rector/rector": "^0.13.9",
1959
+
"vimeo/psalm": "^4.25"
1960
+
},
1961
+
"type": "library",
1962
+
"extra": {
1963
+
"branch-alias": {
1964
+
"dev-1.x": "1.x-dev"
1965
+
}
1966
+
},
1967
+
"autoload": {
1968
+
"psr-4": {
1969
+
"phpDocumentor\\Reflection\\": "src"
1970
+
}
1971
+
},
1972
+
"notification-url": "https://packagist.org/downloads/",
1973
+
"license": [
1974
+
"MIT"
1975
+
],
1976
+
"authors": [
1977
+
{
1978
+
"name": "Mike van Riel",
1979
+
"email": "me@mikevanriel.com"
1980
+
}
1981
+
],
1982
+
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
1983
+
"support": {
1984
+
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
1985
+
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
1986
+
},
1987
+
"time": "2025-11-21T15:09:14+00:00"
1988
+
},
1989
+
{
1990
+
"name": "phpstan/phpdoc-parser",
1991
+
"version": "2.3.0",
1992
+
"source": {
1993
+
"type": "git",
1994
+
"url": "https://github.com/phpstan/phpdoc-parser.git",
1995
+
"reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
1996
+
},
1997
+
"dist": {
1998
+
"type": "zip",
1999
+
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
2000
+
"reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
2001
+
"shasum": ""
2002
+
},
2003
+
"require": {
2004
+
"php": "^7.4 || ^8.0"
2005
+
},
2006
+
"require-dev": {
2007
+
"doctrine/annotations": "^2.0",
2008
+
"nikic/php-parser": "^5.3.0",
2009
+
"php-parallel-lint/php-parallel-lint": "^1.2",
2010
+
"phpstan/extension-installer": "^1.0",
2011
+
"phpstan/phpstan": "^2.0",
2012
+
"phpstan/phpstan-phpunit": "^2.0",
2013
+
"phpstan/phpstan-strict-rules": "^2.0",
2014
+
"phpunit/phpunit": "^9.6",
2015
+
"symfony/process": "^5.2"
2016
+
},
2017
+
"type": "library",
2018
+
"autoload": {
2019
+
"psr-4": {
2020
+
"PHPStan\\PhpDocParser\\": [
2021
+
"src/"
2022
+
]
2023
+
}
2024
+
},
2025
+
"notification-url": "https://packagist.org/downloads/",
2026
+
"license": [
2027
+
"MIT"
2028
+
],
2029
+
"description": "PHPDoc parser with support for nullable, intersection and generic types",
2030
+
"support": {
2031
+
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
2032
+
"source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
2033
+
},
2034
+
"time": "2025-08-30T15:50:23+00:00"
2035
+
},
2036
+
{
2037
+
"name": "psr/container",
2038
+
"version": "2.0.2",
2039
+
"source": {
2040
+
"type": "git",
2041
+
"url": "https://github.com/php-fig/container.git",
2042
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
2043
+
},
2044
+
"dist": {
2045
+
"type": "zip",
2046
+
"url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
2047
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
2048
+
"shasum": ""
2049
+
},
2050
+
"require": {
2051
+
"php": ">=7.4.0"
2052
+
},
2053
+
"type": "library",
2054
+
"extra": {
2055
+
"branch-alias": {
2056
+
"dev-master": "2.0.x-dev"
2057
+
}
2058
+
},
2059
+
"autoload": {
2060
+
"psr-4": {
2061
+
"Psr\\Container\\": "src/"
2062
+
}
2063
+
},
2064
+
"notification-url": "https://packagist.org/downloads/",
2065
+
"license": [
2066
+
"MIT"
2067
+
],
2068
+
"authors": [
2069
+
{
2070
+
"name": "PHP-FIG",
2071
+
"homepage": "https://www.php-fig.org/"
2072
+
}
2073
+
],
2074
+
"description": "Common Container Interface (PHP FIG PSR-11)",
2075
+
"homepage": "https://github.com/php-fig/container",
2076
+
"keywords": [
2077
+
"PSR-11",
2078
+
"container",
2079
+
"container-interface",
2080
+
"container-interop",
2081
+
"psr"
2082
+
],
2083
+
"support": {
2084
+
"issues": "https://github.com/php-fig/container/issues",
2085
+
"source": "https://github.com/php-fig/container/tree/2.0.2"
2086
+
},
2087
+
"time": "2021-11-05T16:47:00+00:00"
2088
+
},
2089
+
{
2090
+
"name": "sabre/event",
2091
+
"version": "5.1.7",
2092
+
"source": {
2093
+
"type": "git",
2094
+
"url": "https://github.com/sabre-io/event.git",
2095
+
"reference": "86d57e305c272898ba3c28e9bd3d65d5464587c2"
2096
+
},
2097
+
"dist": {
2098
+
"type": "zip",
2099
+
"url": "https://api.github.com/repos/sabre-io/event/zipball/86d57e305c272898ba3c28e9bd3d65d5464587c2",
2100
+
"reference": "86d57e305c272898ba3c28e9bd3d65d5464587c2",
2101
+
"shasum": ""
2102
+
},
2103
+
"require": {
2104
+
"php": "^7.1 || ^8.0"
2105
+
},
2106
+
"require-dev": {
2107
+
"friendsofphp/php-cs-fixer": "~2.17.1||^3.63",
2108
+
"phpstan/phpstan": "^0.12",
2109
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6"
2110
+
},
2111
+
"type": "library",
2112
+
"autoload": {
2113
+
"files": [
2114
+
"lib/coroutine.php",
2115
+
"lib/Loop/functions.php",
2116
+
"lib/Promise/functions.php"
2117
+
],
2118
+
"psr-4": {
2119
+
"Sabre\\Event\\": "lib/"
2120
+
}
2121
+
},
2122
+
"notification-url": "https://packagist.org/downloads/",
2123
+
"license": [
2124
+
"BSD-3-Clause"
2125
+
],
2126
+
"authors": [
2127
+
{
2128
+
"name": "Evert Pot",
2129
+
"email": "me@evertpot.com",
2130
+
"homepage": "http://evertpot.com/",
2131
+
"role": "Developer"
2132
+
}
2133
+
],
2134
+
"description": "sabre/event is a library for lightweight event-based programming",
2135
+
"homepage": "http://sabre.io/event/",
2136
+
"keywords": [
2137
+
"EventEmitter",
2138
+
"async",
2139
+
"coroutine",
2140
+
"eventloop",
2141
+
"events",
2142
+
"hooks",
2143
+
"plugin",
2144
+
"promise",
2145
+
"reactor",
2146
+
"signal"
2147
+
],
2148
+
"support": {
2149
+
"forum": "https://groups.google.com/group/sabredav-discuss",
2150
+
"issues": "https://github.com/sabre-io/event/issues",
2151
+
"source": "https://github.com/fruux/sabre-event"
2152
+
},
2153
+
"time": "2024-08-27T11:23:05+00:00"
2154
+
},
2155
+
{
2156
+
"name": "squizlabs/php_codesniffer",
2157
+
"version": "3.13.2",
2158
+
"source": {
2159
+
"type": "git",
2160
+
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
2161
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
2162
+
},
2163
+
"dist": {
2164
+
"type": "zip",
2165
+
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
2166
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
2167
+
"shasum": ""
2168
+
},
2169
+
"require": {
2170
+
"ext-simplexml": "*",
2171
+
"ext-tokenizer": "*",
2172
+
"ext-xmlwriter": "*",
2173
+
"php": ">=5.4.0"
2174
+
},
2175
+
"require-dev": {
2176
+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
2177
+
},
2178
+
"bin": [
2179
+
"bin/phpcbf",
2180
+
"bin/phpcs"
2181
+
],
2182
+
"type": "library",
2183
+
"extra": {
2184
+
"branch-alias": {
2185
+
"dev-master": "3.x-dev"
2186
+
}
2187
+
},
2188
+
"notification-url": "https://packagist.org/downloads/",
2189
+
"license": [
2190
+
"BSD-3-Clause"
2191
+
],
2192
+
"authors": [
2193
+
{
2194
+
"name": "Greg Sherwood",
2195
+
"role": "Former lead"
2196
+
},
2197
+
{
2198
+
"name": "Juliette Reinders Folmer",
2199
+
"role": "Current lead"
2200
+
},
2201
+
{
2202
+
"name": "Contributors",
2203
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
2204
+
}
2205
+
],
2206
+
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
2207
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
2208
+
"keywords": [
2209
+
"phpcs",
2210
+
"standards",
2211
+
"static analysis"
2212
+
],
2213
+
"support": {
2214
+
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
2215
+
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
2216
+
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
2217
+
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
2218
+
},
2219
+
"funding": [
2220
+
{
2221
+
"url": "https://github.com/PHPCSStandards",
2222
+
"type": "github"
2223
+
},
2224
+
{
2225
+
"url": "https://github.com/jrfnl",
2226
+
"type": "github"
2227
+
},
2228
+
{
2229
+
"url": "https://opencollective.com/php_codesniffer",
2230
+
"type": "open_collective"
2231
+
},
2232
+
{
2233
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
2234
+
"type": "thanks_dev"
2235
+
}
2236
+
],
2237
+
"time": "2025-06-17T22:17:01+00:00"
2238
+
},
2239
+
{
2240
+
"name": "symfony/console",
2241
+
"version": "v7.4.1",
2242
+
"source": {
2243
+
"type": "git",
2244
+
"url": "https://github.com/symfony/console.git",
2245
+
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e"
2246
+
},
2247
+
"dist": {
2248
+
"type": "zip",
2249
+
"url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e",
2250
+
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e",
2251
+
"shasum": ""
2252
+
},
2253
+
"require": {
2254
+
"php": ">=8.2",
2255
+
"symfony/deprecation-contracts": "^2.5|^3",
2256
+
"symfony/polyfill-mbstring": "~1.0",
2257
+
"symfony/service-contracts": "^2.5|^3",
2258
+
"symfony/string": "^7.2|^8.0"
2259
+
},
2260
+
"conflict": {
2261
+
"symfony/dependency-injection": "<6.4",
2262
+
"symfony/dotenv": "<6.4",
2263
+
"symfony/event-dispatcher": "<6.4",
2264
+
"symfony/lock": "<6.4",
2265
+
"symfony/process": "<6.4"
2266
+
},
2267
+
"provide": {
2268
+
"psr/log-implementation": "1.0|2.0|3.0"
2269
+
},
2270
+
"require-dev": {
2271
+
"psr/log": "^1|^2|^3",
2272
+
"symfony/config": "^6.4|^7.0|^8.0",
2273
+
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
2274
+
"symfony/event-dispatcher": "^6.4|^7.0|^8.0",
2275
+
"symfony/http-foundation": "^6.4|^7.0|^8.0",
2276
+
"symfony/http-kernel": "^6.4|^7.0|^8.0",
2277
+
"symfony/lock": "^6.4|^7.0|^8.0",
2278
+
"symfony/messenger": "^6.4|^7.0|^8.0",
2279
+
"symfony/process": "^6.4|^7.0|^8.0",
2280
+
"symfony/stopwatch": "^6.4|^7.0|^8.0",
2281
+
"symfony/var-dumper": "^6.4|^7.0|^8.0"
2282
+
},
2283
+
"type": "library",
2284
+
"autoload": {
2285
+
"psr-4": {
2286
+
"Symfony\\Component\\Console\\": ""
2287
+
},
2288
+
"exclude-from-classmap": [
2289
+
"/Tests/"
2290
+
]
2291
+
},
2292
+
"notification-url": "https://packagist.org/downloads/",
2293
+
"license": [
2294
+
"MIT"
2295
+
],
2296
+
"authors": [
2297
+
{
2298
+
"name": "Fabien Potencier",
2299
+
"email": "fabien@symfony.com"
2300
+
},
2301
+
{
2302
+
"name": "Symfony Community",
2303
+
"homepage": "https://symfony.com/contributors"
2304
+
}
2305
+
],
2306
+
"description": "Eases the creation of beautiful and testable command line interfaces",
2307
+
"homepage": "https://symfony.com",
2308
+
"keywords": [
2309
+
"cli",
2310
+
"command-line",
2311
+
"console",
2312
+
"terminal"
2313
+
],
2314
+
"support": {
2315
+
"source": "https://github.com/symfony/console/tree/v7.4.1"
2316
+
},
2317
+
"funding": [
2318
+
{
2319
+
"url": "https://symfony.com/sponsor",
2320
+
"type": "custom"
2321
+
},
2322
+
{
2323
+
"url": "https://github.com/fabpot",
2324
+
"type": "github"
2325
+
},
2326
+
{
2327
+
"url": "https://github.com/nicolas-grekas",
2328
+
"type": "github"
2329
+
},
2330
+
{
2331
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2332
+
"type": "tidelift"
2333
+
}
2334
+
],
2335
+
"time": "2025-12-05T15:23:39+00:00"
2336
+
},
2337
+
{
2338
+
"name": "symfony/polyfill-ctype",
2339
+
"version": "v1.33.0",
2340
+
"source": {
2341
+
"type": "git",
2342
+
"url": "https://github.com/symfony/polyfill-ctype.git",
2343
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
2344
+
},
2345
+
"dist": {
2346
+
"type": "zip",
2347
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
2348
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
2349
+
"shasum": ""
2350
+
},
2351
+
"require": {
2352
+
"php": ">=7.2"
2353
+
},
2354
+
"provide": {
2355
+
"ext-ctype": "*"
2356
+
},
2357
+
"suggest": {
2358
+
"ext-ctype": "For best performance"
2359
+
},
2360
+
"type": "library",
2361
+
"extra": {
2362
+
"thanks": {
2363
+
"url": "https://github.com/symfony/polyfill",
2364
+
"name": "symfony/polyfill"
2365
+
}
2366
+
},
2367
+
"autoload": {
2368
+
"files": [
2369
+
"bootstrap.php"
2370
+
],
2371
+
"psr-4": {
2372
+
"Symfony\\Polyfill\\Ctype\\": ""
2373
+
}
2374
+
},
2375
+
"notification-url": "https://packagist.org/downloads/",
2376
+
"license": [
2377
+
"MIT"
2378
+
],
2379
+
"authors": [
2380
+
{
2381
+
"name": "Gert de Pagter",
2382
+
"email": "BackEndTea@gmail.com"
2383
+
},
2384
+
{
2385
+
"name": "Symfony Community",
2386
+
"homepage": "https://symfony.com/contributors"
2387
+
}
2388
+
],
2389
+
"description": "Symfony polyfill for ctype functions",
2390
+
"homepage": "https://symfony.com",
2391
+
"keywords": [
2392
+
"compatibility",
2393
+
"ctype",
2394
+
"polyfill",
2395
+
"portable"
2396
+
],
2397
+
"support": {
2398
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
2399
+
},
2400
+
"funding": [
2401
+
{
2402
+
"url": "https://symfony.com/sponsor",
2403
+
"type": "custom"
2404
+
},
2405
+
{
2406
+
"url": "https://github.com/fabpot",
2407
+
"type": "github"
2408
+
},
2409
+
{
2410
+
"url": "https://github.com/nicolas-grekas",
2411
+
"type": "github"
2412
+
},
2413
+
{
2414
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2415
+
"type": "tidelift"
2416
+
}
2417
+
],
2418
+
"time": "2024-09-09T11:45:10+00:00"
2419
+
},
2420
+
{
2421
+
"name": "symfony/polyfill-intl-grapheme",
2422
+
"version": "v1.33.0",
2423
+
"source": {
2424
+
"type": "git",
2425
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
2426
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
2427
+
},
2428
+
"dist": {
2429
+
"type": "zip",
2430
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
2431
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
2432
+
"shasum": ""
2433
+
},
2434
+
"require": {
2435
+
"php": ">=7.2"
2436
+
},
2437
+
"suggest": {
2438
+
"ext-intl": "For best performance"
2439
+
},
2440
+
"type": "library",
2441
+
"extra": {
2442
+
"thanks": {
2443
+
"url": "https://github.com/symfony/polyfill",
2444
+
"name": "symfony/polyfill"
2445
+
}
2446
+
},
2447
+
"autoload": {
2448
+
"files": [
2449
+
"bootstrap.php"
2450
+
],
2451
+
"psr-4": {
2452
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
2453
+
}
2454
+
},
2455
+
"notification-url": "https://packagist.org/downloads/",
2456
+
"license": [
2457
+
"MIT"
2458
+
],
2459
+
"authors": [
2460
+
{
2461
+
"name": "Nicolas Grekas",
2462
+
"email": "p@tchwork.com"
2463
+
},
2464
+
{
2465
+
"name": "Symfony Community",
2466
+
"homepage": "https://symfony.com/contributors"
2467
+
}
2468
+
],
2469
+
"description": "Symfony polyfill for intl's grapheme_* functions",
2470
+
"homepage": "https://symfony.com",
2471
+
"keywords": [
2472
+
"compatibility",
2473
+
"grapheme",
2474
+
"intl",
2475
+
"polyfill",
2476
+
"portable",
2477
+
"shim"
2478
+
],
2479
+
"support": {
2480
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
2481
+
},
2482
+
"funding": [
2483
+
{
2484
+
"url": "https://symfony.com/sponsor",
2485
+
"type": "custom"
2486
+
},
2487
+
{
2488
+
"url": "https://github.com/fabpot",
2489
+
"type": "github"
2490
+
},
2491
+
{
2492
+
"url": "https://github.com/nicolas-grekas",
2493
+
"type": "github"
2494
+
},
2495
+
{
2496
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2497
+
"type": "tidelift"
2498
+
}
2499
+
],
2500
+
"time": "2025-06-27T09:58:17+00:00"
2501
+
},
2502
+
{
2503
+
"name": "symfony/polyfill-intl-normalizer",
2504
+
"version": "v1.33.0",
2505
+
"source": {
2506
+
"type": "git",
2507
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
2508
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c"
2509
+
},
2510
+
"dist": {
2511
+
"type": "zip",
2512
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
2513
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c",
2514
+
"shasum": ""
2515
+
},
2516
+
"require": {
2517
+
"php": ">=7.2"
2518
+
},
2519
+
"suggest": {
2520
+
"ext-intl": "For best performance"
2521
+
},
2522
+
"type": "library",
2523
+
"extra": {
2524
+
"thanks": {
2525
+
"url": "https://github.com/symfony/polyfill",
2526
+
"name": "symfony/polyfill"
2527
+
}
2528
+
},
2529
+
"autoload": {
2530
+
"files": [
2531
+
"bootstrap.php"
2532
+
],
2533
+
"psr-4": {
2534
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
2535
+
},
2536
+
"classmap": [
2537
+
"Resources/stubs"
2538
+
]
2539
+
},
2540
+
"notification-url": "https://packagist.org/downloads/",
2541
+
"license": [
2542
+
"MIT"
2543
+
],
2544
+
"authors": [
2545
+
{
2546
+
"name": "Nicolas Grekas",
2547
+
"email": "p@tchwork.com"
2548
+
},
2549
+
{
2550
+
"name": "Symfony Community",
2551
+
"homepage": "https://symfony.com/contributors"
2552
+
}
2553
+
],
2554
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
2555
+
"homepage": "https://symfony.com",
2556
+
"keywords": [
2557
+
"compatibility",
2558
+
"intl",
2559
+
"normalizer",
2560
+
"polyfill",
2561
+
"portable",
2562
+
"shim"
2563
+
],
2564
+
"support": {
2565
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
2566
+
},
2567
+
"funding": [
2568
+
{
2569
+
"url": "https://symfony.com/sponsor",
2570
+
"type": "custom"
2571
+
},
2572
+
{
2573
+
"url": "https://github.com/fabpot",
2574
+
"type": "github"
2575
+
},
2576
+
{
2577
+
"url": "https://github.com/nicolas-grekas",
2578
+
"type": "github"
2579
+
},
2580
+
{
2581
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2582
+
"type": "tidelift"
2583
+
}
2584
+
],
2585
+
"time": "2024-09-09T11:45:10+00:00"
2586
+
},
2587
+
{
2588
+
"name": "symfony/polyfill-mbstring",
2589
+
"version": "v1.33.0",
2590
+
"source": {
2591
+
"type": "git",
2592
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
2593
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
2594
+
},
2595
+
"dist": {
2596
+
"type": "zip",
2597
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
2598
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
2599
+
"shasum": ""
2600
+
},
2601
+
"require": {
2602
+
"ext-iconv": "*",
2603
+
"php": ">=7.2"
2604
+
},
2605
+
"provide": {
2606
+
"ext-mbstring": "*"
2607
+
},
2608
+
"suggest": {
2609
+
"ext-mbstring": "For best performance"
2610
+
},
2611
+
"type": "library",
2612
+
"extra": {
2613
+
"thanks": {
2614
+
"url": "https://github.com/symfony/polyfill",
2615
+
"name": "symfony/polyfill"
2616
+
}
2617
+
},
2618
+
"autoload": {
2619
+
"files": [
2620
+
"bootstrap.php"
2621
+
],
2622
+
"psr-4": {
2623
+
"Symfony\\Polyfill\\Mbstring\\": ""
2624
+
}
2625
+
},
2626
+
"notification-url": "https://packagist.org/downloads/",
2627
+
"license": [
2628
+
"MIT"
2629
+
],
2630
+
"authors": [
2631
+
{
2632
+
"name": "Nicolas Grekas",
2633
+
"email": "p@tchwork.com"
2634
+
},
2635
+
{
2636
+
"name": "Symfony Community",
2637
+
"homepage": "https://symfony.com/contributors"
2638
+
}
2639
+
],
2640
+
"description": "Symfony polyfill for the Mbstring extension",
2641
+
"homepage": "https://symfony.com",
2642
+
"keywords": [
2643
+
"compatibility",
2644
+
"mbstring",
2645
+
"polyfill",
2646
+
"portable",
2647
+
"shim"
2648
+
],
2649
+
"support": {
2650
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
2651
+
},
2652
+
"funding": [
2653
+
{
2654
+
"url": "https://symfony.com/sponsor",
2655
+
"type": "custom"
2656
+
},
2657
+
{
2658
+
"url": "https://github.com/fabpot",
2659
+
"type": "github"
2660
+
},
2661
+
{
2662
+
"url": "https://github.com/nicolas-grekas",
2663
+
"type": "github"
2664
+
},
2665
+
{
2666
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2667
+
"type": "tidelift"
2668
+
}
2669
+
],
2670
+
"time": "2024-12-23T08:48:59+00:00"
2671
+
},
2672
+
{
2673
+
"name": "symfony/polyfill-php80",
2674
+
"version": "v1.33.0",
2675
+
"source": {
2676
+
"type": "git",
2677
+
"url": "https://github.com/symfony/polyfill-php80.git",
2678
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
2679
+
},
2680
+
"dist": {
2681
+
"type": "zip",
2682
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2683
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2684
+
"shasum": ""
2685
+
},
2686
+
"require": {
2687
+
"php": ">=7.2"
2688
+
},
2689
+
"type": "library",
2690
+
"extra": {
2691
+
"thanks": {
2692
+
"url": "https://github.com/symfony/polyfill",
2693
+
"name": "symfony/polyfill"
2694
+
}
2695
+
},
2696
+
"autoload": {
2697
+
"files": [
2698
+
"bootstrap.php"
2699
+
],
2700
+
"psr-4": {
2701
+
"Symfony\\Polyfill\\Php80\\": ""
2702
+
},
2703
+
"classmap": [
2704
+
"Resources/stubs"
2705
+
]
2706
+
},
2707
+
"notification-url": "https://packagist.org/downloads/",
2708
+
"license": [
2709
+
"MIT"
2710
+
],
2711
+
"authors": [
2712
+
{
2713
+
"name": "Ion Bazan",
2714
+
"email": "ion.bazan@gmail.com"
2715
+
},
2716
+
{
2717
+
"name": "Nicolas Grekas",
2718
+
"email": "p@tchwork.com"
2719
+
},
2720
+
{
2721
+
"name": "Symfony Community",
2722
+
"homepage": "https://symfony.com/contributors"
2723
+
}
2724
+
],
2725
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
2726
+
"homepage": "https://symfony.com",
2727
+
"keywords": [
2728
+
"compatibility",
2729
+
"polyfill",
2730
+
"portable",
2731
+
"shim"
2732
+
],
2733
+
"support": {
2734
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
2735
+
},
2736
+
"funding": [
2737
+
{
2738
+
"url": "https://symfony.com/sponsor",
2739
+
"type": "custom"
2740
+
},
2741
+
{
2742
+
"url": "https://github.com/fabpot",
2743
+
"type": "github"
2744
+
},
2745
+
{
2746
+
"url": "https://github.com/nicolas-grekas",
2747
+
"type": "github"
2748
+
},
2749
+
{
2750
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2751
+
"type": "tidelift"
2752
+
}
2753
+
],
2754
+
"time": "2025-01-02T08:10:11+00:00"
2755
+
},
2756
+
{
2757
+
"name": "symfony/service-contracts",
2758
+
"version": "v3.6.1",
2759
+
"source": {
2760
+
"type": "git",
2761
+
"url": "https://github.com/symfony/service-contracts.git",
2762
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
2763
+
},
2764
+
"dist": {
2765
+
"type": "zip",
2766
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
2767
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
2768
+
"shasum": ""
2769
+
},
2770
+
"require": {
2771
+
"php": ">=8.1",
2772
+
"psr/container": "^1.1|^2.0",
2773
+
"symfony/deprecation-contracts": "^2.5|^3"
2774
+
},
2775
+
"conflict": {
2776
+
"ext-psr": "<1.1|>=2"
2777
+
},
2778
+
"type": "library",
2779
+
"extra": {
2780
+
"thanks": {
2781
+
"url": "https://github.com/symfony/contracts",
2782
+
"name": "symfony/contracts"
2783
+
},
2784
+
"branch-alias": {
2785
+
"dev-main": "3.6-dev"
2786
+
}
2787
+
},
2788
+
"autoload": {
2789
+
"psr-4": {
2790
+
"Symfony\\Contracts\\Service\\": ""
2791
+
},
2792
+
"exclude-from-classmap": [
2793
+
"/Test/"
2794
+
]
2795
+
},
2796
+
"notification-url": "https://packagist.org/downloads/",
2797
+
"license": [
2798
+
"MIT"
2799
+
],
2800
+
"authors": [
2801
+
{
2802
+
"name": "Nicolas Grekas",
2803
+
"email": "p@tchwork.com"
2804
+
},
2805
+
{
2806
+
"name": "Symfony Community",
2807
+
"homepage": "https://symfony.com/contributors"
2808
+
}
2809
+
],
2810
+
"description": "Generic abstractions related to writing services",
2811
+
"homepage": "https://symfony.com",
2812
+
"keywords": [
2813
+
"abstractions",
2814
+
"contracts",
2815
+
"decoupling",
2816
+
"interfaces",
2817
+
"interoperability",
2818
+
"standards"
2819
+
],
2820
+
"support": {
2821
+
"source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
2822
+
},
2823
+
"funding": [
2824
+
{
2825
+
"url": "https://symfony.com/sponsor",
2826
+
"type": "custom"
2827
+
},
2828
+
{
2829
+
"url": "https://github.com/fabpot",
2830
+
"type": "github"
2831
+
},
2832
+
{
2833
+
"url": "https://github.com/nicolas-grekas",
2834
+
"type": "github"
2835
+
},
2836
+
{
2837
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2838
+
"type": "tidelift"
2839
+
}
2840
+
],
2841
+
"time": "2025-07-15T11:30:57+00:00"
2842
+
},
2843
+
{
2844
+
"name": "symfony/string",
2845
+
"version": "v8.0.1",
2846
+
"source": {
2847
+
"type": "git",
2848
+
"url": "https://github.com/symfony/string.git",
2849
+
"reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc"
2850
+
},
2851
+
"dist": {
2852
+
"type": "zip",
2853
+
"url": "https://api.github.com/repos/symfony/string/zipball/ba65a969ac918ce0cc3edfac6cdde847eba231dc",
2854
+
"reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc",
2855
+
"shasum": ""
2856
+
},
2857
+
"require": {
2858
+
"php": ">=8.4",
2859
+
"symfony/polyfill-ctype": "^1.8",
2860
+
"symfony/polyfill-intl-grapheme": "^1.33",
2861
+
"symfony/polyfill-intl-normalizer": "^1.0",
2862
+
"symfony/polyfill-mbstring": "^1.0"
2863
+
},
2864
+
"conflict": {
2865
+
"symfony/translation-contracts": "<2.5"
2866
+
},
2867
+
"require-dev": {
2868
+
"symfony/emoji": "^7.4|^8.0",
2869
+
"symfony/http-client": "^7.4|^8.0",
2870
+
"symfony/intl": "^7.4|^8.0",
2871
+
"symfony/translation-contracts": "^2.5|^3.0",
2872
+
"symfony/var-exporter": "^7.4|^8.0"
2873
+
},
2874
+
"type": "library",
2875
+
"autoload": {
2876
+
"files": [
2877
+
"Resources/functions.php"
2878
+
],
2879
+
"psr-4": {
2880
+
"Symfony\\Component\\String\\": ""
2881
+
},
2882
+
"exclude-from-classmap": [
2883
+
"/Tests/"
2884
+
]
2885
+
},
2886
+
"notification-url": "https://packagist.org/downloads/",
2887
+
"license": [
2888
+
"MIT"
2889
+
],
2890
+
"authors": [
2891
+
{
2892
+
"name": "Nicolas Grekas",
2893
+
"email": "p@tchwork.com"
2894
+
},
2895
+
{
2896
+
"name": "Symfony Community",
2897
+
"homepage": "https://symfony.com/contributors"
2898
+
}
2899
+
],
2900
+
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
2901
+
"homepage": "https://symfony.com",
2902
+
"keywords": [
2903
+
"grapheme",
2904
+
"i18n",
2905
+
"string",
2906
+
"unicode",
2907
+
"utf-8",
2908
+
"utf8"
2909
+
],
2910
+
"support": {
2911
+
"source": "https://github.com/symfony/string/tree/v8.0.1"
2912
+
},
2913
+
"funding": [
2914
+
{
2915
+
"url": "https://symfony.com/sponsor",
2916
+
"type": "custom"
2917
+
},
2918
+
{
2919
+
"url": "https://github.com/fabpot",
2920
+
"type": "github"
2921
+
},
2922
+
{
2923
+
"url": "https://github.com/nicolas-grekas",
2924
+
"type": "github"
2925
+
},
2926
+
{
2927
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2928
+
"type": "tidelift"
2929
+
}
2930
+
],
2931
+
"time": "2025-12-01T09:13:36+00:00"
2932
+
},
2933
+
{
2934
+
"name": "tysonandre/var_representation_polyfill",
2935
+
"version": "0.1.3",
2936
+
"source": {
2937
+
"type": "git",
2938
+
"url": "https://github.com/TysonAndre/var_representation_polyfill.git",
2939
+
"reference": "e9116c2c352bb0835ca428b442dde7767c11ad32"
2940
+
},
2941
+
"dist": {
2942
+
"type": "zip",
2943
+
"url": "https://api.github.com/repos/TysonAndre/var_representation_polyfill/zipball/e9116c2c352bb0835ca428b442dde7767c11ad32",
2944
+
"reference": "e9116c2c352bb0835ca428b442dde7767c11ad32",
2945
+
"shasum": ""
2946
+
},
2947
+
"require": {
2948
+
"ext-tokenizer": "*",
2949
+
"php": "^7.2.0|^8.0.0"
2950
+
},
2951
+
"provide": {
2952
+
"ext-var_representation": "*"
2953
+
},
2954
+
"require-dev": {
2955
+
"phan/phan": "^5.4.1",
2956
+
"phpunit/phpunit": "^8.5.0"
2957
+
},
2958
+
"suggest": {
2959
+
"ext-var_representation": "For best performance"
2960
+
},
2961
+
"type": "library",
2962
+
"extra": {
2963
+
"branch-alias": {
2964
+
"dev-main": "0.1.3-dev"
2965
+
}
2966
+
},
2967
+
"autoload": {
2968
+
"files": [
2969
+
"src/var_representation.php"
2970
+
],
2971
+
"psr-4": {
2972
+
"VarRepresentation\\": "src/VarRepresentation"
2973
+
}
2974
+
},
2975
+
"notification-url": "https://packagist.org/downloads/",
2976
+
"license": [
2977
+
"MIT"
2978
+
],
2979
+
"authors": [
2980
+
{
2981
+
"name": "Tyson Andre"
2982
+
}
2983
+
],
2984
+
"description": "Polyfill for var_representation: convert a variable to a string in a way that fixes the shortcomings of var_export",
2985
+
"keywords": [
2986
+
"var_export",
2987
+
"var_representation"
2988
+
],
2989
+
"support": {
2990
+
"issues": "https://github.com/TysonAndre/var_representation_polyfill/issues",
2991
+
"source": "https://github.com/TysonAndre/var_representation_polyfill/tree/0.1.3"
2992
+
},
2993
+
"time": "2022-08-31T12:59:22+00:00"
2994
+
},
2995
+
{
2996
+
"name": "webmozart/assert",
2997
+
"version": "2.0.0",
2998
+
"source": {
2999
+
"type": "git",
3000
+
"url": "https://github.com/webmozarts/assert.git",
3001
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54"
3002
+
},
3003
+
"dist": {
3004
+
"type": "zip",
3005
+
"url": "https://api.github.com/repos/webmozarts/assert/zipball/1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
3006
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
3007
+
"shasum": ""
3008
+
},
3009
+
"require": {
3010
+
"ext-ctype": "*",
3011
+
"ext-date": "*",
3012
+
"ext-filter": "*",
3013
+
"php": "^8.2"
3014
+
},
3015
+
"suggest": {
3016
+
"ext-intl": "",
3017
+
"ext-simplexml": "",
3018
+
"ext-spl": ""
3019
+
},
3020
+
"type": "library",
3021
+
"extra": {
3022
+
"branch-alias": {
3023
+
"dev-feature/2-0": "2.0-dev"
3024
+
}
3025
+
},
3026
+
"autoload": {
3027
+
"psr-4": {
3028
+
"Webmozart\\Assert\\": "src/"
3029
+
}
3030
+
},
3031
+
"notification-url": "https://packagist.org/downloads/",
3032
+
"license": [
3033
+
"MIT"
3034
+
],
3035
+
"authors": [
3036
+
{
3037
+
"name": "Bernhard Schussek",
3038
+
"email": "bschussek@gmail.com"
3039
+
},
3040
+
{
3041
+
"name": "Woody Gilk",
3042
+
"email": "woody.gilk@gmail.com"
3043
+
}
3044
+
],
3045
+
"description": "Assertions to validate method input/output with nice error messages.",
3046
+
"keywords": [
3047
+
"assert",
3048
+
"check",
3049
+
"validate"
3050
+
],
3051
+
"support": {
3052
+
"issues": "https://github.com/webmozarts/assert/issues",
3053
+
"source": "https://github.com/webmozarts/assert/tree/2.0.0"
3054
+
},
3055
+
"time": "2025-12-16T21:36:00+00:00"
3056
+
}
3057
+
],
3058
+
"aliases": [],
3059
+
"minimum-stability": "stable",
3060
+
"stability-flags": {},
3061
+
"prefer-stable": false,
3062
+
"prefer-lowest": false,
3063
+
"platform": {
3064
+
"ext-curl": "*"
3065
+
},
3066
+
"platform-dev": {},
3067
+
"plugin-api-version": "2.6.0"
3068
+
}
+3
packetmix/systems/wiki/wiki/Elastica.composer.lock.license
+3
packetmix/systems/wiki/wiki/Elastica.composer.lock.license
+2891
packetmix/systems/wiki/wiki/Network.composer.lock
+2891
packetmix/systems/wiki/wiki/Network.composer.lock
···
1
+
{
2
+
"_readme": [
3
+
"This file locks the dependencies of your project to a known state",
4
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+
"This file is @generated automatically"
6
+
],
7
+
"content-hash": "650166dc7d470e4c1f244ec9132c5888",
8
+
"packages": [
9
+
{
10
+
"name": "composer/installers",
11
+
"version": "v2.3.0",
12
+
"source": {
13
+
"type": "git",
14
+
"url": "https://github.com/composer/installers.git",
15
+
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e"
16
+
},
17
+
"dist": {
18
+
"type": "zip",
19
+
"url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e",
20
+
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e",
21
+
"shasum": ""
22
+
},
23
+
"require": {
24
+
"composer-plugin-api": "^1.0 || ^2.0",
25
+
"php": "^7.2 || ^8.0"
26
+
},
27
+
"require-dev": {
28
+
"composer/composer": "^1.10.27 || ^2.7",
29
+
"composer/semver": "^1.7.2 || ^3.4.0",
30
+
"phpstan/phpstan": "^1.11",
31
+
"phpstan/phpstan-phpunit": "^1",
32
+
"symfony/phpunit-bridge": "^7.1.1",
33
+
"symfony/process": "^5 || ^6 || ^7"
34
+
},
35
+
"type": "composer-plugin",
36
+
"extra": {
37
+
"class": "Composer\\Installers\\Plugin",
38
+
"branch-alias": {
39
+
"dev-main": "2.x-dev"
40
+
},
41
+
"plugin-modifies-install-path": true
42
+
},
43
+
"autoload": {
44
+
"psr-4": {
45
+
"Composer\\Installers\\": "src/Composer/Installers"
46
+
}
47
+
},
48
+
"notification-url": "https://packagist.org/downloads/",
49
+
"license": [
50
+
"MIT"
51
+
],
52
+
"authors": [
53
+
{
54
+
"name": "Kyle Robinson Young",
55
+
"email": "kyle@dontkry.com",
56
+
"homepage": "https://github.com/shama"
57
+
}
58
+
],
59
+
"description": "A multi-framework Composer library installer",
60
+
"homepage": "https://composer.github.io/installers/",
61
+
"keywords": [
62
+
"Dolibarr",
63
+
"Eliasis",
64
+
"Hurad",
65
+
"ImageCMS",
66
+
"Kanboard",
67
+
"Lan Management System",
68
+
"MODX Evo",
69
+
"MantisBT",
70
+
"Mautic",
71
+
"Maya",
72
+
"OXID",
73
+
"Plentymarkets",
74
+
"Porto",
75
+
"RadPHP",
76
+
"SMF",
77
+
"Starbug",
78
+
"Thelia",
79
+
"Whmcs",
80
+
"WolfCMS",
81
+
"agl",
82
+
"annotatecms",
83
+
"attogram",
84
+
"bitrix",
85
+
"cakephp",
86
+
"chef",
87
+
"cockpit",
88
+
"codeigniter",
89
+
"concrete5",
90
+
"concreteCMS",
91
+
"croogo",
92
+
"dokuwiki",
93
+
"drupal",
94
+
"eZ Platform",
95
+
"elgg",
96
+
"expressionengine",
97
+
"fuelphp",
98
+
"grav",
99
+
"installer",
100
+
"itop",
101
+
"known",
102
+
"kohana",
103
+
"laravel",
104
+
"lavalite",
105
+
"lithium",
106
+
"magento",
107
+
"majima",
108
+
"mako",
109
+
"matomo",
110
+
"mediawiki",
111
+
"miaoxing",
112
+
"modulework",
113
+
"modx",
114
+
"moodle",
115
+
"osclass",
116
+
"pantheon",
117
+
"phpbb",
118
+
"piwik",
119
+
"ppi",
120
+
"processwire",
121
+
"puppet",
122
+
"pxcms",
123
+
"reindex",
124
+
"roundcube",
125
+
"shopware",
126
+
"silverstripe",
127
+
"sydes",
128
+
"sylius",
129
+
"tastyigniter",
130
+
"wordpress",
131
+
"yawik",
132
+
"zend",
133
+
"zikula"
134
+
],
135
+
"support": {
136
+
"issues": "https://github.com/composer/installers/issues",
137
+
"source": "https://github.com/composer/installers/tree/v2.3.0"
138
+
},
139
+
"funding": [
140
+
{
141
+
"url": "https://packagist.com",
142
+
"type": "custom"
143
+
},
144
+
{
145
+
"url": "https://github.com/composer",
146
+
"type": "github"
147
+
},
148
+
{
149
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
150
+
"type": "tidelift"
151
+
}
152
+
],
153
+
"time": "2024-06-24T20:46:46+00:00"
154
+
}
155
+
],
156
+
"packages-dev": [
157
+
{
158
+
"name": "amphp/amp",
159
+
"version": "v2.6.5",
160
+
"source": {
161
+
"type": "git",
162
+
"url": "https://github.com/amphp/amp.git",
163
+
"reference": "d7dda98dae26e56f3f6fcfbf1c1f819c9a993207"
164
+
},
165
+
"dist": {
166
+
"type": "zip",
167
+
"url": "https://api.github.com/repos/amphp/amp/zipball/d7dda98dae26e56f3f6fcfbf1c1f819c9a993207",
168
+
"reference": "d7dda98dae26e56f3f6fcfbf1c1f819c9a993207",
169
+
"shasum": ""
170
+
},
171
+
"require": {
172
+
"php": ">=7.1"
173
+
},
174
+
"require-dev": {
175
+
"amphp/php-cs-fixer-config": "dev-master",
176
+
"amphp/phpunit-util": "^1",
177
+
"ext-json": "*",
178
+
"jetbrains/phpstorm-stubs": "^2019.3",
179
+
"phpunit/phpunit": "^7 | ^8 | ^9",
180
+
"react/promise": "^2",
181
+
"vimeo/psalm": "^3.12"
182
+
},
183
+
"type": "library",
184
+
"autoload": {
185
+
"files": [
186
+
"lib/functions.php",
187
+
"lib/Internal/functions.php"
188
+
],
189
+
"psr-4": {
190
+
"Amp\\": "lib"
191
+
}
192
+
},
193
+
"notification-url": "https://packagist.org/downloads/",
194
+
"license": [
195
+
"MIT"
196
+
],
197
+
"authors": [
198
+
{
199
+
"name": "Daniel Lowrey",
200
+
"email": "rdlowrey@php.net"
201
+
},
202
+
{
203
+
"name": "Aaron Piotrowski",
204
+
"email": "aaron@trowski.com"
205
+
},
206
+
{
207
+
"name": "Bob Weinand",
208
+
"email": "bobwei9@hotmail.com"
209
+
},
210
+
{
211
+
"name": "Niklas Keller",
212
+
"email": "me@kelunik.com"
213
+
}
214
+
],
215
+
"description": "A non-blocking concurrency framework for PHP applications.",
216
+
"homepage": "https://amphp.org/amp",
217
+
"keywords": [
218
+
"async",
219
+
"asynchronous",
220
+
"awaitable",
221
+
"concurrency",
222
+
"event",
223
+
"event-loop",
224
+
"future",
225
+
"non-blocking",
226
+
"promise"
227
+
],
228
+
"support": {
229
+
"irc": "irc://irc.freenode.org/amphp",
230
+
"issues": "https://github.com/amphp/amp/issues",
231
+
"source": "https://github.com/amphp/amp/tree/v2.6.5"
232
+
},
233
+
"funding": [
234
+
{
235
+
"url": "https://github.com/amphp",
236
+
"type": "github"
237
+
}
238
+
],
239
+
"time": "2025-09-03T19:41:28+00:00"
240
+
},
241
+
{
242
+
"name": "amphp/byte-stream",
243
+
"version": "v1.8.2",
244
+
"source": {
245
+
"type": "git",
246
+
"url": "https://github.com/amphp/byte-stream.git",
247
+
"reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc"
248
+
},
249
+
"dist": {
250
+
"type": "zip",
251
+
"url": "https://api.github.com/repos/amphp/byte-stream/zipball/4f0e968ba3798a423730f567b1b50d3441c16ddc",
252
+
"reference": "4f0e968ba3798a423730f567b1b50d3441c16ddc",
253
+
"shasum": ""
254
+
},
255
+
"require": {
256
+
"amphp/amp": "^2",
257
+
"php": ">=7.1"
258
+
},
259
+
"require-dev": {
260
+
"amphp/php-cs-fixer-config": "dev-master",
261
+
"amphp/phpunit-util": "^1.4",
262
+
"friendsofphp/php-cs-fixer": "^2.3",
263
+
"jetbrains/phpstorm-stubs": "^2019.3",
264
+
"phpunit/phpunit": "^6 || ^7 || ^8",
265
+
"psalm/phar": "^3.11.4"
266
+
},
267
+
"type": "library",
268
+
"autoload": {
269
+
"files": [
270
+
"lib/functions.php"
271
+
],
272
+
"psr-4": {
273
+
"Amp\\ByteStream\\": "lib"
274
+
}
275
+
},
276
+
"notification-url": "https://packagist.org/downloads/",
277
+
"license": [
278
+
"MIT"
279
+
],
280
+
"authors": [
281
+
{
282
+
"name": "Aaron Piotrowski",
283
+
"email": "aaron@trowski.com"
284
+
},
285
+
{
286
+
"name": "Niklas Keller",
287
+
"email": "me@kelunik.com"
288
+
}
289
+
],
290
+
"description": "A stream abstraction to make working with non-blocking I/O simple.",
291
+
"homepage": "https://amphp.org/byte-stream",
292
+
"keywords": [
293
+
"amp",
294
+
"amphp",
295
+
"async",
296
+
"io",
297
+
"non-blocking",
298
+
"stream"
299
+
],
300
+
"support": {
301
+
"issues": "https://github.com/amphp/byte-stream/issues",
302
+
"source": "https://github.com/amphp/byte-stream/tree/v1.8.2"
303
+
},
304
+
"funding": [
305
+
{
306
+
"url": "https://github.com/amphp",
307
+
"type": "github"
308
+
}
309
+
],
310
+
"time": "2024-04-13T18:00:56+00:00"
311
+
},
312
+
{
313
+
"name": "composer/pcre",
314
+
"version": "3.3.2",
315
+
"source": {
316
+
"type": "git",
317
+
"url": "https://github.com/composer/pcre.git",
318
+
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
319
+
},
320
+
"dist": {
321
+
"type": "zip",
322
+
"url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
323
+
"reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
324
+
"shasum": ""
325
+
},
326
+
"require": {
327
+
"php": "^7.4 || ^8.0"
328
+
},
329
+
"conflict": {
330
+
"phpstan/phpstan": "<1.11.10"
331
+
},
332
+
"require-dev": {
333
+
"phpstan/phpstan": "^1.12 || ^2",
334
+
"phpstan/phpstan-strict-rules": "^1 || ^2",
335
+
"phpunit/phpunit": "^8 || ^9"
336
+
},
337
+
"type": "library",
338
+
"extra": {
339
+
"phpstan": {
340
+
"includes": [
341
+
"extension.neon"
342
+
]
343
+
},
344
+
"branch-alias": {
345
+
"dev-main": "3.x-dev"
346
+
}
347
+
},
348
+
"autoload": {
349
+
"psr-4": {
350
+
"Composer\\Pcre\\": "src"
351
+
}
352
+
},
353
+
"notification-url": "https://packagist.org/downloads/",
354
+
"license": [
355
+
"MIT"
356
+
],
357
+
"authors": [
358
+
{
359
+
"name": "Jordi Boggiano",
360
+
"email": "j.boggiano@seld.be",
361
+
"homepage": "http://seld.be"
362
+
}
363
+
],
364
+
"description": "PCRE wrapping library that offers type-safe preg_* replacements.",
365
+
"keywords": [
366
+
"PCRE",
367
+
"preg",
368
+
"regex",
369
+
"regular expression"
370
+
],
371
+
"support": {
372
+
"issues": "https://github.com/composer/pcre/issues",
373
+
"source": "https://github.com/composer/pcre/tree/3.3.2"
374
+
},
375
+
"funding": [
376
+
{
377
+
"url": "https://packagist.com",
378
+
"type": "custom"
379
+
},
380
+
{
381
+
"url": "https://github.com/composer",
382
+
"type": "github"
383
+
},
384
+
{
385
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
386
+
"type": "tidelift"
387
+
}
388
+
],
389
+
"time": "2024-11-12T16:29:46+00:00"
390
+
},
391
+
{
392
+
"name": "composer/semver",
393
+
"version": "3.4.3",
394
+
"source": {
395
+
"type": "git",
396
+
"url": "https://github.com/composer/semver.git",
397
+
"reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
398
+
},
399
+
"dist": {
400
+
"type": "zip",
401
+
"url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
402
+
"reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
403
+
"shasum": ""
404
+
},
405
+
"require": {
406
+
"php": "^5.3.2 || ^7.0 || ^8.0"
407
+
},
408
+
"require-dev": {
409
+
"phpstan/phpstan": "^1.11",
410
+
"symfony/phpunit-bridge": "^3 || ^7"
411
+
},
412
+
"type": "library",
413
+
"extra": {
414
+
"branch-alias": {
415
+
"dev-main": "3.x-dev"
416
+
}
417
+
},
418
+
"autoload": {
419
+
"psr-4": {
420
+
"Composer\\Semver\\": "src"
421
+
}
422
+
},
423
+
"notification-url": "https://packagist.org/downloads/",
424
+
"license": [
425
+
"MIT"
426
+
],
427
+
"authors": [
428
+
{
429
+
"name": "Nils Adermann",
430
+
"email": "naderman@naderman.de",
431
+
"homepage": "http://www.naderman.de"
432
+
},
433
+
{
434
+
"name": "Jordi Boggiano",
435
+
"email": "j.boggiano@seld.be",
436
+
"homepage": "http://seld.be"
437
+
},
438
+
{
439
+
"name": "Rob Bast",
440
+
"email": "rob.bast@gmail.com",
441
+
"homepage": "http://robbast.nl"
442
+
}
443
+
],
444
+
"description": "Semver library that offers utilities, version constraint parsing and validation.",
445
+
"keywords": [
446
+
"semantic",
447
+
"semver",
448
+
"validation",
449
+
"versioning"
450
+
],
451
+
"support": {
452
+
"irc": "ircs://irc.libera.chat:6697/composer",
453
+
"issues": "https://github.com/composer/semver/issues",
454
+
"source": "https://github.com/composer/semver/tree/3.4.3"
455
+
},
456
+
"funding": [
457
+
{
458
+
"url": "https://packagist.com",
459
+
"type": "custom"
460
+
},
461
+
{
462
+
"url": "https://github.com/composer",
463
+
"type": "github"
464
+
},
465
+
{
466
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
467
+
"type": "tidelift"
468
+
}
469
+
],
470
+
"time": "2024-09-19T14:15:21+00:00"
471
+
},
472
+
{
473
+
"name": "composer/spdx-licenses",
474
+
"version": "1.5.9",
475
+
"source": {
476
+
"type": "git",
477
+
"url": "https://github.com/composer/spdx-licenses.git",
478
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f"
479
+
},
480
+
"dist": {
481
+
"type": "zip",
482
+
"url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f",
483
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f",
484
+
"shasum": ""
485
+
},
486
+
"require": {
487
+
"php": "^5.3.2 || ^7.0 || ^8.0"
488
+
},
489
+
"require-dev": {
490
+
"phpstan/phpstan": "^1.11",
491
+
"symfony/phpunit-bridge": "^3 || ^7"
492
+
},
493
+
"type": "library",
494
+
"extra": {
495
+
"branch-alias": {
496
+
"dev-main": "1.x-dev"
497
+
}
498
+
},
499
+
"autoload": {
500
+
"psr-4": {
501
+
"Composer\\Spdx\\": "src"
502
+
}
503
+
},
504
+
"notification-url": "https://packagist.org/downloads/",
505
+
"license": [
506
+
"MIT"
507
+
],
508
+
"authors": [
509
+
{
510
+
"name": "Nils Adermann",
511
+
"email": "naderman@naderman.de",
512
+
"homepage": "http://www.naderman.de"
513
+
},
514
+
{
515
+
"name": "Jordi Boggiano",
516
+
"email": "j.boggiano@seld.be",
517
+
"homepage": "http://seld.be"
518
+
},
519
+
{
520
+
"name": "Rob Bast",
521
+
"email": "rob.bast@gmail.com",
522
+
"homepage": "http://robbast.nl"
523
+
}
524
+
],
525
+
"description": "SPDX licenses list and validation library.",
526
+
"keywords": [
527
+
"license",
528
+
"spdx",
529
+
"validator"
530
+
],
531
+
"support": {
532
+
"irc": "ircs://irc.libera.chat:6697/composer",
533
+
"issues": "https://github.com/composer/spdx-licenses/issues",
534
+
"source": "https://github.com/composer/spdx-licenses/tree/1.5.9"
535
+
},
536
+
"funding": [
537
+
{
538
+
"url": "https://packagist.com",
539
+
"type": "custom"
540
+
},
541
+
{
542
+
"url": "https://github.com/composer",
543
+
"type": "github"
544
+
},
545
+
{
546
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
547
+
"type": "tidelift"
548
+
}
549
+
],
550
+
"time": "2025-05-12T21:07:07+00:00"
551
+
},
552
+
{
553
+
"name": "composer/xdebug-handler",
554
+
"version": "3.0.5",
555
+
"source": {
556
+
"type": "git",
557
+
"url": "https://github.com/composer/xdebug-handler.git",
558
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef"
559
+
},
560
+
"dist": {
561
+
"type": "zip",
562
+
"url": "https://api.github.com/repos/composer/xdebug-handler/zipball/6c1925561632e83d60a44492e0b344cf48ab85ef",
563
+
"reference": "6c1925561632e83d60a44492e0b344cf48ab85ef",
564
+
"shasum": ""
565
+
},
566
+
"require": {
567
+
"composer/pcre": "^1 || ^2 || ^3",
568
+
"php": "^7.2.5 || ^8.0",
569
+
"psr/log": "^1 || ^2 || ^3"
570
+
},
571
+
"require-dev": {
572
+
"phpstan/phpstan": "^1.0",
573
+
"phpstan/phpstan-strict-rules": "^1.1",
574
+
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
575
+
},
576
+
"type": "library",
577
+
"autoload": {
578
+
"psr-4": {
579
+
"Composer\\XdebugHandler\\": "src"
580
+
}
581
+
},
582
+
"notification-url": "https://packagist.org/downloads/",
583
+
"license": [
584
+
"MIT"
585
+
],
586
+
"authors": [
587
+
{
588
+
"name": "John Stevenson",
589
+
"email": "john-stevenson@blueyonder.co.uk"
590
+
}
591
+
],
592
+
"description": "Restarts a process without Xdebug.",
593
+
"keywords": [
594
+
"Xdebug",
595
+
"performance"
596
+
],
597
+
"support": {
598
+
"irc": "ircs://irc.libera.chat:6697/composer",
599
+
"issues": "https://github.com/composer/xdebug-handler/issues",
600
+
"source": "https://github.com/composer/xdebug-handler/tree/3.0.5"
601
+
},
602
+
"funding": [
603
+
{
604
+
"url": "https://packagist.com",
605
+
"type": "custom"
606
+
},
607
+
{
608
+
"url": "https://github.com/composer",
609
+
"type": "github"
610
+
},
611
+
{
612
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
613
+
"type": "tidelift"
614
+
}
615
+
],
616
+
"time": "2024-05-06T16:37:16+00:00"
617
+
},
618
+
{
619
+
"name": "dealerdirect/phpcodesniffer-composer-installer",
620
+
"version": "v1.2.0",
621
+
"source": {
622
+
"type": "git",
623
+
"url": "https://github.com/PHPCSStandards/composer-installer.git",
624
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
625
+
},
626
+
"dist": {
627
+
"type": "zip",
628
+
"url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
629
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
630
+
"shasum": ""
631
+
},
632
+
"require": {
633
+
"composer-plugin-api": "^2.2",
634
+
"php": ">=5.4",
635
+
"squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
636
+
},
637
+
"require-dev": {
638
+
"composer/composer": "^2.2",
639
+
"ext-json": "*",
640
+
"ext-zip": "*",
641
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
642
+
"phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
643
+
"yoast/phpunit-polyfills": "^1.0"
644
+
},
645
+
"type": "composer-plugin",
646
+
"extra": {
647
+
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
648
+
},
649
+
"autoload": {
650
+
"psr-4": {
651
+
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
652
+
}
653
+
},
654
+
"notification-url": "https://packagist.org/downloads/",
655
+
"license": [
656
+
"MIT"
657
+
],
658
+
"authors": [
659
+
{
660
+
"name": "Franck Nijhof",
661
+
"email": "opensource@frenck.dev",
662
+
"homepage": "https://frenck.dev",
663
+
"role": "Open source developer"
664
+
},
665
+
{
666
+
"name": "Contributors",
667
+
"homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
668
+
}
669
+
],
670
+
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
671
+
"keywords": [
672
+
"PHPCodeSniffer",
673
+
"PHP_CodeSniffer",
674
+
"code quality",
675
+
"codesniffer",
676
+
"composer",
677
+
"installer",
678
+
"phpcbf",
679
+
"phpcs",
680
+
"plugin",
681
+
"qa",
682
+
"quality",
683
+
"standard",
684
+
"standards",
685
+
"style guide",
686
+
"stylecheck",
687
+
"tests"
688
+
],
689
+
"support": {
690
+
"issues": "https://github.com/PHPCSStandards/composer-installer/issues",
691
+
"security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
692
+
"source": "https://github.com/PHPCSStandards/composer-installer"
693
+
},
694
+
"funding": [
695
+
{
696
+
"url": "https://github.com/PHPCSStandards",
697
+
"type": "github"
698
+
},
699
+
{
700
+
"url": "https://github.com/jrfnl",
701
+
"type": "github"
702
+
},
703
+
{
704
+
"url": "https://opencollective.com/php_codesniffer",
705
+
"type": "open_collective"
706
+
},
707
+
{
708
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
709
+
"type": "thanks_dev"
710
+
}
711
+
],
712
+
"time": "2025-11-11T04:32:07+00:00"
713
+
},
714
+
{
715
+
"name": "dnoegel/php-xdg-base-dir",
716
+
"version": "v0.1.1",
717
+
"source": {
718
+
"type": "git",
719
+
"url": "https://github.com/dnoegel/php-xdg-base-dir.git",
720
+
"reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd"
721
+
},
722
+
"dist": {
723
+
"type": "zip",
724
+
"url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
725
+
"reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd",
726
+
"shasum": ""
727
+
},
728
+
"require": {
729
+
"php": ">=5.3.2"
730
+
},
731
+
"require-dev": {
732
+
"phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35"
733
+
},
734
+
"type": "library",
735
+
"autoload": {
736
+
"psr-4": {
737
+
"XdgBaseDir\\": "src/"
738
+
}
739
+
},
740
+
"notification-url": "https://packagist.org/downloads/",
741
+
"license": [
742
+
"MIT"
743
+
],
744
+
"description": "implementation of xdg base directory specification for php",
745
+
"support": {
746
+
"issues": "https://github.com/dnoegel/php-xdg-base-dir/issues",
747
+
"source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1"
748
+
},
749
+
"time": "2019-12-04T15:06:13+00:00"
750
+
},
751
+
{
752
+
"name": "doctrine/deprecations",
753
+
"version": "1.1.5",
754
+
"source": {
755
+
"type": "git",
756
+
"url": "https://github.com/doctrine/deprecations.git",
757
+
"reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
758
+
},
759
+
"dist": {
760
+
"type": "zip",
761
+
"url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
762
+
"reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
763
+
"shasum": ""
764
+
},
765
+
"require": {
766
+
"php": "^7.1 || ^8.0"
767
+
},
768
+
"conflict": {
769
+
"phpunit/phpunit": "<=7.5 || >=13"
770
+
},
771
+
"require-dev": {
772
+
"doctrine/coding-standard": "^9 || ^12 || ^13",
773
+
"phpstan/phpstan": "1.4.10 || 2.1.11",
774
+
"phpstan/phpstan-phpunit": "^1.0 || ^2",
775
+
"phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
776
+
"psr/log": "^1 || ^2 || ^3"
777
+
},
778
+
"suggest": {
779
+
"psr/log": "Allows logging deprecations via PSR-3 logger implementation"
780
+
},
781
+
"type": "library",
782
+
"autoload": {
783
+
"psr-4": {
784
+
"Doctrine\\Deprecations\\": "src"
785
+
}
786
+
},
787
+
"notification-url": "https://packagist.org/downloads/",
788
+
"license": [
789
+
"MIT"
790
+
],
791
+
"description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
792
+
"homepage": "https://www.doctrine-project.org/",
793
+
"support": {
794
+
"issues": "https://github.com/doctrine/deprecations/issues",
795
+
"source": "https://github.com/doctrine/deprecations/tree/1.1.5"
796
+
},
797
+
"time": "2025-04-07T20:06:18+00:00"
798
+
},
799
+
{
800
+
"name": "felixfbecker/advanced-json-rpc",
801
+
"version": "v3.2.1",
802
+
"source": {
803
+
"type": "git",
804
+
"url": "https://github.com/felixfbecker/php-advanced-json-rpc.git",
805
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447"
806
+
},
807
+
"dist": {
808
+
"type": "zip",
809
+
"url": "https://api.github.com/repos/felixfbecker/php-advanced-json-rpc/zipball/b5f37dbff9a8ad360ca341f3240dc1c168b45447",
810
+
"reference": "b5f37dbff9a8ad360ca341f3240dc1c168b45447",
811
+
"shasum": ""
812
+
},
813
+
"require": {
814
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
815
+
"php": "^7.1 || ^8.0",
816
+
"phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
817
+
},
818
+
"require-dev": {
819
+
"phpunit/phpunit": "^7.0 || ^8.0"
820
+
},
821
+
"type": "library",
822
+
"autoload": {
823
+
"psr-4": {
824
+
"AdvancedJsonRpc\\": "lib/"
825
+
}
826
+
},
827
+
"notification-url": "https://packagist.org/downloads/",
828
+
"license": [
829
+
"ISC"
830
+
],
831
+
"authors": [
832
+
{
833
+
"name": "Felix Becker",
834
+
"email": "felix.b@outlook.com"
835
+
}
836
+
],
837
+
"description": "A more advanced JSONRPC implementation",
838
+
"support": {
839
+
"issues": "https://github.com/felixfbecker/php-advanced-json-rpc/issues",
840
+
"source": "https://github.com/felixfbecker/php-advanced-json-rpc/tree/v3.2.1"
841
+
},
842
+
"time": "2021-06-11T22:34:44+00:00"
843
+
},
844
+
{
845
+
"name": "felixfbecker/language-server-protocol",
846
+
"version": "v1.5.3",
847
+
"source": {
848
+
"type": "git",
849
+
"url": "https://github.com/felixfbecker/php-language-server-protocol.git",
850
+
"reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9"
851
+
},
852
+
"dist": {
853
+
"type": "zip",
854
+
"url": "https://api.github.com/repos/felixfbecker/php-language-server-protocol/zipball/a9e113dbc7d849e35b8776da39edaf4313b7b6c9",
855
+
"reference": "a9e113dbc7d849e35b8776da39edaf4313b7b6c9",
856
+
"shasum": ""
857
+
},
858
+
"require": {
859
+
"php": ">=7.1"
860
+
},
861
+
"require-dev": {
862
+
"phpstan/phpstan": "*",
863
+
"squizlabs/php_codesniffer": "^3.1",
864
+
"vimeo/psalm": "^4.0"
865
+
},
866
+
"type": "library",
867
+
"extra": {
868
+
"branch-alias": {
869
+
"dev-master": "1.x-dev"
870
+
}
871
+
},
872
+
"autoload": {
873
+
"psr-4": {
874
+
"LanguageServerProtocol\\": "src/"
875
+
}
876
+
},
877
+
"notification-url": "https://packagist.org/downloads/",
878
+
"license": [
879
+
"ISC"
880
+
],
881
+
"authors": [
882
+
{
883
+
"name": "Felix Becker",
884
+
"email": "felix.b@outlook.com"
885
+
}
886
+
],
887
+
"description": "PHP classes for the Language Server Protocol",
888
+
"keywords": [
889
+
"language",
890
+
"microsoft",
891
+
"php",
892
+
"server"
893
+
],
894
+
"support": {
895
+
"issues": "https://github.com/felixfbecker/php-language-server-protocol/issues",
896
+
"source": "https://github.com/felixfbecker/php-language-server-protocol/tree/v1.5.3"
897
+
},
898
+
"time": "2024-04-30T00:40:11+00:00"
899
+
},
900
+
{
901
+
"name": "fidry/cpu-core-counter",
902
+
"version": "1.3.0",
903
+
"source": {
904
+
"type": "git",
905
+
"url": "https://github.com/theofidry/cpu-core-counter.git",
906
+
"reference": "db9508f7b1474469d9d3c53b86f817e344732678"
907
+
},
908
+
"dist": {
909
+
"type": "zip",
910
+
"url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/db9508f7b1474469d9d3c53b86f817e344732678",
911
+
"reference": "db9508f7b1474469d9d3c53b86f817e344732678",
912
+
"shasum": ""
913
+
},
914
+
"require": {
915
+
"php": "^7.2 || ^8.0"
916
+
},
917
+
"require-dev": {
918
+
"fidry/makefile": "^0.2.0",
919
+
"fidry/php-cs-fixer-config": "^1.1.2",
920
+
"phpstan/extension-installer": "^1.2.0",
921
+
"phpstan/phpstan": "^2.0",
922
+
"phpstan/phpstan-deprecation-rules": "^2.0.0",
923
+
"phpstan/phpstan-phpunit": "^2.0",
924
+
"phpstan/phpstan-strict-rules": "^2.0",
925
+
"phpunit/phpunit": "^8.5.31 || ^9.5.26",
926
+
"webmozarts/strict-phpunit": "^7.5"
927
+
},
928
+
"type": "library",
929
+
"autoload": {
930
+
"psr-4": {
931
+
"Fidry\\CpuCoreCounter\\": "src/"
932
+
}
933
+
},
934
+
"notification-url": "https://packagist.org/downloads/",
935
+
"license": [
936
+
"MIT"
937
+
],
938
+
"authors": [
939
+
{
940
+
"name": "Thรฉo FIDRY",
941
+
"email": "theo.fidry@gmail.com"
942
+
}
943
+
],
944
+
"description": "Tiny utility to get the number of CPU cores.",
945
+
"keywords": [
946
+
"CPU",
947
+
"core"
948
+
],
949
+
"support": {
950
+
"issues": "https://github.com/theofidry/cpu-core-counter/issues",
951
+
"source": "https://github.com/theofidry/cpu-core-counter/tree/1.3.0"
952
+
},
953
+
"funding": [
954
+
{
955
+
"url": "https://github.com/theofidry",
956
+
"type": "github"
957
+
}
958
+
],
959
+
"time": "2025-08-14T07:29:31+00:00"
960
+
},
961
+
{
962
+
"name": "mediawiki/mediawiki-codesniffer",
963
+
"version": "v45.0.0",
964
+
"source": {
965
+
"type": "git",
966
+
"url": "https://github.com/wikimedia/mediawiki-tools-codesniffer.git",
967
+
"reference": "3ebb209514384d68ba52f16c26ba192a9027442d"
968
+
},
969
+
"dist": {
970
+
"type": "zip",
971
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-codesniffer/zipball/3ebb209514384d68ba52f16c26ba192a9027442d",
972
+
"reference": "3ebb209514384d68ba52f16c26ba192a9027442d",
973
+
"shasum": ""
974
+
},
975
+
"require": {
976
+
"composer/semver": "3.4.2 || 3.4.3",
977
+
"composer/spdx-licenses": "~1.5.2",
978
+
"ext-json": "*",
979
+
"ext-mbstring": "*",
980
+
"php": ">=7.4.0",
981
+
"phpcsstandards/phpcsextra": "1.2.1",
982
+
"squizlabs/php_codesniffer": "3.10.3",
983
+
"symfony/polyfill-php80": "^1.26.0"
984
+
},
985
+
"require-dev": {
986
+
"ext-dom": "*",
987
+
"mediawiki/mediawiki-phan-config": "0.14.0",
988
+
"mediawiki/minus-x": "1.1.3",
989
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
990
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
991
+
"phpunit/phpunit": "9.6.16"
992
+
},
993
+
"type": "phpcodesniffer-standard",
994
+
"autoload": {
995
+
"psr-4": {
996
+
"MediaWiki\\Sniffs\\": "MediaWiki/Sniffs/",
997
+
"MediaWiki\\Sniffs\\Tests\\": "MediaWiki/Tests/"
998
+
}
999
+
},
1000
+
"notification-url": "https://packagist.org/downloads/",
1001
+
"license": [
1002
+
"GPL-2.0-or-later"
1003
+
],
1004
+
"description": "MediaWiki CodeSniffer Standards",
1005
+
"homepage": "https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP",
1006
+
"keywords": [
1007
+
"codesniffer",
1008
+
"mediawiki"
1009
+
],
1010
+
"support": {
1011
+
"source": "https://github.com/wikimedia/mediawiki-tools-codesniffer/tree/v45.0.0"
1012
+
},
1013
+
"time": "2024-10-29T17:38:15+00:00"
1014
+
},
1015
+
{
1016
+
"name": "netresearch/jsonmapper",
1017
+
"version": "v4.5.0",
1018
+
"source": {
1019
+
"type": "git",
1020
+
"url": "https://github.com/cweiske/jsonmapper.git",
1021
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5"
1022
+
},
1023
+
"dist": {
1024
+
"type": "zip",
1025
+
"url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
1026
+
"reference": "8e76efb98ee8b6afc54687045e1b8dba55ac76e5",
1027
+
"shasum": ""
1028
+
},
1029
+
"require": {
1030
+
"ext-json": "*",
1031
+
"ext-pcre": "*",
1032
+
"ext-reflection": "*",
1033
+
"ext-spl": "*",
1034
+
"php": ">=7.1"
1035
+
},
1036
+
"require-dev": {
1037
+
"phpunit/phpunit": "~7.5 || ~8.0 || ~9.0 || ~10.0",
1038
+
"squizlabs/php_codesniffer": "~3.5"
1039
+
},
1040
+
"type": "library",
1041
+
"autoload": {
1042
+
"psr-0": {
1043
+
"JsonMapper": "src/"
1044
+
}
1045
+
},
1046
+
"notification-url": "https://packagist.org/downloads/",
1047
+
"license": [
1048
+
"OSL-3.0"
1049
+
],
1050
+
"authors": [
1051
+
{
1052
+
"name": "Christian Weiske",
1053
+
"email": "cweiske@cweiske.de",
1054
+
"homepage": "http://github.com/cweiske/jsonmapper/",
1055
+
"role": "Developer"
1056
+
}
1057
+
],
1058
+
"description": "Map nested JSON structures onto PHP classes",
1059
+
"support": {
1060
+
"email": "cweiske@cweiske.de",
1061
+
"issues": "https://github.com/cweiske/jsonmapper/issues",
1062
+
"source": "https://github.com/cweiske/jsonmapper/tree/v4.5.0"
1063
+
},
1064
+
"time": "2024-09-08T10:13:13+00:00"
1065
+
},
1066
+
{
1067
+
"name": "nikic/php-parser",
1068
+
"version": "v4.19.5",
1069
+
"source": {
1070
+
"type": "git",
1071
+
"url": "https://github.com/nikic/PHP-Parser.git",
1072
+
"reference": "51bd93cc741b7fc3d63d20b6bdcd99fdaa359837"
1073
+
},
1074
+
"dist": {
1075
+
"type": "zip",
1076
+
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/51bd93cc741b7fc3d63d20b6bdcd99fdaa359837",
1077
+
"reference": "51bd93cc741b7fc3d63d20b6bdcd99fdaa359837",
1078
+
"shasum": ""
1079
+
},
1080
+
"require": {
1081
+
"ext-tokenizer": "*",
1082
+
"php": ">=7.1"
1083
+
},
1084
+
"require-dev": {
1085
+
"ircmaxell/php-yacc": "^0.0.7",
1086
+
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
1087
+
},
1088
+
"bin": [
1089
+
"bin/php-parse"
1090
+
],
1091
+
"type": "library",
1092
+
"autoload": {
1093
+
"psr-4": {
1094
+
"PhpParser\\": "lib/PhpParser"
1095
+
}
1096
+
},
1097
+
"notification-url": "https://packagist.org/downloads/",
1098
+
"license": [
1099
+
"BSD-3-Clause"
1100
+
],
1101
+
"authors": [
1102
+
{
1103
+
"name": "Nikita Popov"
1104
+
}
1105
+
],
1106
+
"description": "A PHP parser written in PHP",
1107
+
"keywords": [
1108
+
"parser",
1109
+
"php"
1110
+
],
1111
+
"support": {
1112
+
"issues": "https://github.com/nikic/PHP-Parser/issues",
1113
+
"source": "https://github.com/nikic/PHP-Parser/tree/v4.19.5"
1114
+
},
1115
+
"time": "2025-12-06T11:45:25+00:00"
1116
+
},
1117
+
{
1118
+
"name": "phpcsstandards/phpcsextra",
1119
+
"version": "1.2.1",
1120
+
"source": {
1121
+
"type": "git",
1122
+
"url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
1123
+
"reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489"
1124
+
},
1125
+
"dist": {
1126
+
"type": "zip",
1127
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
1128
+
"reference": "11d387c6642b6e4acaf0bd9bf5203b8cca1ec489",
1129
+
"shasum": ""
1130
+
},
1131
+
"require": {
1132
+
"php": ">=5.4",
1133
+
"phpcsstandards/phpcsutils": "^1.0.9",
1134
+
"squizlabs/php_codesniffer": "^3.8.0"
1135
+
},
1136
+
"require-dev": {
1137
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1138
+
"php-parallel-lint/php-parallel-lint": "^1.3.2",
1139
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1140
+
"phpcsstandards/phpcsdevtools": "^1.2.1",
1141
+
"phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
1142
+
},
1143
+
"type": "phpcodesniffer-standard",
1144
+
"extra": {
1145
+
"branch-alias": {
1146
+
"dev-stable": "1.x-dev",
1147
+
"dev-develop": "1.x-dev"
1148
+
}
1149
+
},
1150
+
"notification-url": "https://packagist.org/downloads/",
1151
+
"license": [
1152
+
"LGPL-3.0-or-later"
1153
+
],
1154
+
"authors": [
1155
+
{
1156
+
"name": "Juliette Reinders Folmer",
1157
+
"homepage": "https://github.com/jrfnl",
1158
+
"role": "lead"
1159
+
},
1160
+
{
1161
+
"name": "Contributors",
1162
+
"homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
1163
+
}
1164
+
],
1165
+
"description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
1166
+
"keywords": [
1167
+
"PHP_CodeSniffer",
1168
+
"phpcbf",
1169
+
"phpcodesniffer-standard",
1170
+
"phpcs",
1171
+
"standards",
1172
+
"static analysis"
1173
+
],
1174
+
"support": {
1175
+
"issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
1176
+
"security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
1177
+
"source": "https://github.com/PHPCSStandards/PHPCSExtra"
1178
+
},
1179
+
"funding": [
1180
+
{
1181
+
"url": "https://github.com/PHPCSStandards",
1182
+
"type": "github"
1183
+
},
1184
+
{
1185
+
"url": "https://github.com/jrfnl",
1186
+
"type": "github"
1187
+
},
1188
+
{
1189
+
"url": "https://opencollective.com/php_codesniffer",
1190
+
"type": "open_collective"
1191
+
}
1192
+
],
1193
+
"time": "2023-12-08T16:49:07+00:00"
1194
+
},
1195
+
{
1196
+
"name": "phpcsstandards/phpcsutils",
1197
+
"version": "1.0.12",
1198
+
"source": {
1199
+
"type": "git",
1200
+
"url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
1201
+
"reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c"
1202
+
},
1203
+
"dist": {
1204
+
"type": "zip",
1205
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/87b233b00daf83fb70f40c9a28692be017ea7c6c",
1206
+
"reference": "87b233b00daf83fb70f40c9a28692be017ea7c6c",
1207
+
"shasum": ""
1208
+
},
1209
+
"require": {
1210
+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
1211
+
"php": ">=5.4",
1212
+
"squizlabs/php_codesniffer": "^3.10.0 || 4.0.x-dev@dev"
1213
+
},
1214
+
"require-dev": {
1215
+
"ext-filter": "*",
1216
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1217
+
"php-parallel-lint/php-parallel-lint": "^1.3.2",
1218
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1219
+
"yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0"
1220
+
},
1221
+
"type": "phpcodesniffer-standard",
1222
+
"extra": {
1223
+
"branch-alias": {
1224
+
"dev-stable": "1.x-dev",
1225
+
"dev-develop": "1.x-dev"
1226
+
}
1227
+
},
1228
+
"autoload": {
1229
+
"classmap": [
1230
+
"PHPCSUtils/"
1231
+
]
1232
+
},
1233
+
"notification-url": "https://packagist.org/downloads/",
1234
+
"license": [
1235
+
"LGPL-3.0-or-later"
1236
+
],
1237
+
"authors": [
1238
+
{
1239
+
"name": "Juliette Reinders Folmer",
1240
+
"homepage": "https://github.com/jrfnl",
1241
+
"role": "lead"
1242
+
},
1243
+
{
1244
+
"name": "Contributors",
1245
+
"homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
1246
+
}
1247
+
],
1248
+
"description": "A suite of utility functions for use with PHP_CodeSniffer",
1249
+
"homepage": "https://phpcsutils.com/",
1250
+
"keywords": [
1251
+
"PHP_CodeSniffer",
1252
+
"phpcbf",
1253
+
"phpcodesniffer-standard",
1254
+
"phpcs",
1255
+
"phpcs3",
1256
+
"standards",
1257
+
"static analysis",
1258
+
"tokens",
1259
+
"utility"
1260
+
],
1261
+
"support": {
1262
+
"docs": "https://phpcsutils.com/",
1263
+
"issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
1264
+
"security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
1265
+
"source": "https://github.com/PHPCSStandards/PHPCSUtils"
1266
+
},
1267
+
"funding": [
1268
+
{
1269
+
"url": "https://github.com/PHPCSStandards",
1270
+
"type": "github"
1271
+
},
1272
+
{
1273
+
"url": "https://github.com/jrfnl",
1274
+
"type": "github"
1275
+
},
1276
+
{
1277
+
"url": "https://opencollective.com/php_codesniffer",
1278
+
"type": "open_collective"
1279
+
}
1280
+
],
1281
+
"time": "2024-05-20T13:34:27+00:00"
1282
+
},
1283
+
{
1284
+
"name": "phpdocumentor/reflection-common",
1285
+
"version": "2.2.0",
1286
+
"source": {
1287
+
"type": "git",
1288
+
"url": "https://github.com/phpDocumentor/ReflectionCommon.git",
1289
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
1290
+
},
1291
+
"dist": {
1292
+
"type": "zip",
1293
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1294
+
"reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
1295
+
"shasum": ""
1296
+
},
1297
+
"require": {
1298
+
"php": "^7.2 || ^8.0"
1299
+
},
1300
+
"type": "library",
1301
+
"extra": {
1302
+
"branch-alias": {
1303
+
"dev-2.x": "2.x-dev"
1304
+
}
1305
+
},
1306
+
"autoload": {
1307
+
"psr-4": {
1308
+
"phpDocumentor\\Reflection\\": "src/"
1309
+
}
1310
+
},
1311
+
"notification-url": "https://packagist.org/downloads/",
1312
+
"license": [
1313
+
"MIT"
1314
+
],
1315
+
"authors": [
1316
+
{
1317
+
"name": "Jaap van Otterdijk",
1318
+
"email": "opensource@ijaap.nl"
1319
+
}
1320
+
],
1321
+
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
1322
+
"homepage": "http://www.phpdoc.org",
1323
+
"keywords": [
1324
+
"FQSEN",
1325
+
"phpDocumentor",
1326
+
"phpdoc",
1327
+
"reflection",
1328
+
"static analysis"
1329
+
],
1330
+
"support": {
1331
+
"issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
1332
+
"source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
1333
+
},
1334
+
"time": "2020-06-27T09:03:43+00:00"
1335
+
},
1336
+
{
1337
+
"name": "phpdocumentor/reflection-docblock",
1338
+
"version": "5.6.6",
1339
+
"source": {
1340
+
"type": "git",
1341
+
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
1342
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
1343
+
},
1344
+
"dist": {
1345
+
"type": "zip",
1346
+
"url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1347
+
"reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
1348
+
"shasum": ""
1349
+
},
1350
+
"require": {
1351
+
"doctrine/deprecations": "^1.1",
1352
+
"ext-filter": "*",
1353
+
"php": "^7.4 || ^8.0",
1354
+
"phpdocumentor/reflection-common": "^2.2",
1355
+
"phpdocumentor/type-resolver": "^1.7",
1356
+
"phpstan/phpdoc-parser": "^1.7|^2.0",
1357
+
"webmozart/assert": "^1.9.1 || ^2"
1358
+
},
1359
+
"require-dev": {
1360
+
"mockery/mockery": "~1.3.5 || ~1.6.0",
1361
+
"phpstan/extension-installer": "^1.1",
1362
+
"phpstan/phpstan": "^1.8",
1363
+
"phpstan/phpstan-mockery": "^1.1",
1364
+
"phpstan/phpstan-webmozart-assert": "^1.2",
1365
+
"phpunit/phpunit": "^9.5",
1366
+
"psalm/phar": "^5.26"
1367
+
},
1368
+
"type": "library",
1369
+
"extra": {
1370
+
"branch-alias": {
1371
+
"dev-master": "5.x-dev"
1372
+
}
1373
+
},
1374
+
"autoload": {
1375
+
"psr-4": {
1376
+
"phpDocumentor\\Reflection\\": "src"
1377
+
}
1378
+
},
1379
+
"notification-url": "https://packagist.org/downloads/",
1380
+
"license": [
1381
+
"MIT"
1382
+
],
1383
+
"authors": [
1384
+
{
1385
+
"name": "Mike van Riel",
1386
+
"email": "me@mikevanriel.com"
1387
+
},
1388
+
{
1389
+
"name": "Jaap van Otterdijk",
1390
+
"email": "opensource@ijaap.nl"
1391
+
}
1392
+
],
1393
+
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
1394
+
"support": {
1395
+
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
1396
+
"source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
1397
+
},
1398
+
"time": "2025-12-22T21:13:58+00:00"
1399
+
},
1400
+
{
1401
+
"name": "phpdocumentor/type-resolver",
1402
+
"version": "1.12.0",
1403
+
"source": {
1404
+
"type": "git",
1405
+
"url": "https://github.com/phpDocumentor/TypeResolver.git",
1406
+
"reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
1407
+
},
1408
+
"dist": {
1409
+
"type": "zip",
1410
+
"url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
1411
+
"reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
1412
+
"shasum": ""
1413
+
},
1414
+
"require": {
1415
+
"doctrine/deprecations": "^1.0",
1416
+
"php": "^7.3 || ^8.0",
1417
+
"phpdocumentor/reflection-common": "^2.0",
1418
+
"phpstan/phpdoc-parser": "^1.18|^2.0"
1419
+
},
1420
+
"require-dev": {
1421
+
"ext-tokenizer": "*",
1422
+
"phpbench/phpbench": "^1.2",
1423
+
"phpstan/extension-installer": "^1.1",
1424
+
"phpstan/phpstan": "^1.8",
1425
+
"phpstan/phpstan-phpunit": "^1.1",
1426
+
"phpunit/phpunit": "^9.5",
1427
+
"rector/rector": "^0.13.9",
1428
+
"vimeo/psalm": "^4.25"
1429
+
},
1430
+
"type": "library",
1431
+
"extra": {
1432
+
"branch-alias": {
1433
+
"dev-1.x": "1.x-dev"
1434
+
}
1435
+
},
1436
+
"autoload": {
1437
+
"psr-4": {
1438
+
"phpDocumentor\\Reflection\\": "src"
1439
+
}
1440
+
},
1441
+
"notification-url": "https://packagist.org/downloads/",
1442
+
"license": [
1443
+
"MIT"
1444
+
],
1445
+
"authors": [
1446
+
{
1447
+
"name": "Mike van Riel",
1448
+
"email": "me@mikevanriel.com"
1449
+
}
1450
+
],
1451
+
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
1452
+
"support": {
1453
+
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
1454
+
"source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
1455
+
},
1456
+
"time": "2025-11-21T15:09:14+00:00"
1457
+
},
1458
+
{
1459
+
"name": "phpstan/phpdoc-parser",
1460
+
"version": "2.3.0",
1461
+
"source": {
1462
+
"type": "git",
1463
+
"url": "https://github.com/phpstan/phpdoc-parser.git",
1464
+
"reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
1465
+
},
1466
+
"dist": {
1467
+
"type": "zip",
1468
+
"url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
1469
+
"reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
1470
+
"shasum": ""
1471
+
},
1472
+
"require": {
1473
+
"php": "^7.4 || ^8.0"
1474
+
},
1475
+
"require-dev": {
1476
+
"doctrine/annotations": "^2.0",
1477
+
"nikic/php-parser": "^5.3.0",
1478
+
"php-parallel-lint/php-parallel-lint": "^1.2",
1479
+
"phpstan/extension-installer": "^1.0",
1480
+
"phpstan/phpstan": "^2.0",
1481
+
"phpstan/phpstan-phpunit": "^2.0",
1482
+
"phpstan/phpstan-strict-rules": "^2.0",
1483
+
"phpunit/phpunit": "^9.6",
1484
+
"symfony/process": "^5.2"
1485
+
},
1486
+
"type": "library",
1487
+
"autoload": {
1488
+
"psr-4": {
1489
+
"PHPStan\\PhpDocParser\\": [
1490
+
"src/"
1491
+
]
1492
+
}
1493
+
},
1494
+
"notification-url": "https://packagist.org/downloads/",
1495
+
"license": [
1496
+
"MIT"
1497
+
],
1498
+
"description": "PHPDoc parser with support for nullable, intersection and generic types",
1499
+
"support": {
1500
+
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
1501
+
"source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
1502
+
},
1503
+
"time": "2025-08-30T15:50:23+00:00"
1504
+
},
1505
+
{
1506
+
"name": "phpstan/phpstan",
1507
+
"version": "2.1.33",
1508
+
"dist": {
1509
+
"type": "zip",
1510
+
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/9e800e6bee7d5bd02784d4c6069b48032d16224f",
1511
+
"reference": "9e800e6bee7d5bd02784d4c6069b48032d16224f",
1512
+
"shasum": ""
1513
+
},
1514
+
"require": {
1515
+
"php": "^7.4|^8.0"
1516
+
},
1517
+
"conflict": {
1518
+
"phpstan/phpstan-shim": "*"
1519
+
},
1520
+
"bin": [
1521
+
"phpstan",
1522
+
"phpstan.phar"
1523
+
],
1524
+
"type": "library",
1525
+
"autoload": {
1526
+
"files": [
1527
+
"bootstrap.php"
1528
+
]
1529
+
},
1530
+
"notification-url": "https://packagist.org/downloads/",
1531
+
"license": [
1532
+
"MIT"
1533
+
],
1534
+
"description": "PHPStan - PHP Static Analysis Tool",
1535
+
"keywords": [
1536
+
"dev",
1537
+
"static analysis"
1538
+
],
1539
+
"support": {
1540
+
"docs": "https://phpstan.org/user-guide/getting-started",
1541
+
"forum": "https://github.com/phpstan/phpstan/discussions",
1542
+
"issues": "https://github.com/phpstan/phpstan/issues",
1543
+
"security": "https://github.com/phpstan/phpstan/security/policy",
1544
+
"source": "https://github.com/phpstan/phpstan-src"
1545
+
},
1546
+
"funding": [
1547
+
{
1548
+
"url": "https://github.com/ondrejmirtes",
1549
+
"type": "github"
1550
+
},
1551
+
{
1552
+
"url": "https://github.com/phpstan",
1553
+
"type": "github"
1554
+
}
1555
+
],
1556
+
"time": "2025-12-05T10:24:31+00:00"
1557
+
},
1558
+
{
1559
+
"name": "psr/container",
1560
+
"version": "2.0.2",
1561
+
"source": {
1562
+
"type": "git",
1563
+
"url": "https://github.com/php-fig/container.git",
1564
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
1565
+
},
1566
+
"dist": {
1567
+
"type": "zip",
1568
+
"url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
1569
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
1570
+
"shasum": ""
1571
+
},
1572
+
"require": {
1573
+
"php": ">=7.4.0"
1574
+
},
1575
+
"type": "library",
1576
+
"extra": {
1577
+
"branch-alias": {
1578
+
"dev-master": "2.0.x-dev"
1579
+
}
1580
+
},
1581
+
"autoload": {
1582
+
"psr-4": {
1583
+
"Psr\\Container\\": "src/"
1584
+
}
1585
+
},
1586
+
"notification-url": "https://packagist.org/downloads/",
1587
+
"license": [
1588
+
"MIT"
1589
+
],
1590
+
"authors": [
1591
+
{
1592
+
"name": "PHP-FIG",
1593
+
"homepage": "https://www.php-fig.org/"
1594
+
}
1595
+
],
1596
+
"description": "Common Container Interface (PHP FIG PSR-11)",
1597
+
"homepage": "https://github.com/php-fig/container",
1598
+
"keywords": [
1599
+
"PSR-11",
1600
+
"container",
1601
+
"container-interface",
1602
+
"container-interop",
1603
+
"psr"
1604
+
],
1605
+
"support": {
1606
+
"issues": "https://github.com/php-fig/container/issues",
1607
+
"source": "https://github.com/php-fig/container/tree/2.0.2"
1608
+
},
1609
+
"time": "2021-11-05T16:47:00+00:00"
1610
+
},
1611
+
{
1612
+
"name": "psr/log",
1613
+
"version": "3.0.2",
1614
+
"source": {
1615
+
"type": "git",
1616
+
"url": "https://github.com/php-fig/log.git",
1617
+
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
1618
+
},
1619
+
"dist": {
1620
+
"type": "zip",
1621
+
"url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
1622
+
"reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
1623
+
"shasum": ""
1624
+
},
1625
+
"require": {
1626
+
"php": ">=8.0.0"
1627
+
},
1628
+
"type": "library",
1629
+
"extra": {
1630
+
"branch-alias": {
1631
+
"dev-master": "3.x-dev"
1632
+
}
1633
+
},
1634
+
"autoload": {
1635
+
"psr-4": {
1636
+
"Psr\\Log\\": "src"
1637
+
}
1638
+
},
1639
+
"notification-url": "https://packagist.org/downloads/",
1640
+
"license": [
1641
+
"MIT"
1642
+
],
1643
+
"authors": [
1644
+
{
1645
+
"name": "PHP-FIG",
1646
+
"homepage": "https://www.php-fig.org/"
1647
+
}
1648
+
],
1649
+
"description": "Common interface for logging libraries",
1650
+
"homepage": "https://github.com/php-fig/log",
1651
+
"keywords": [
1652
+
"log",
1653
+
"psr",
1654
+
"psr-3"
1655
+
],
1656
+
"support": {
1657
+
"source": "https://github.com/php-fig/log/tree/3.0.2"
1658
+
},
1659
+
"time": "2024-09-11T13:17:53+00:00"
1660
+
},
1661
+
{
1662
+
"name": "sebastian/diff",
1663
+
"version": "6.0.2",
1664
+
"source": {
1665
+
"type": "git",
1666
+
"url": "https://github.com/sebastianbergmann/diff.git",
1667
+
"reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
1668
+
},
1669
+
"dist": {
1670
+
"type": "zip",
1671
+
"url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
1672
+
"reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
1673
+
"shasum": ""
1674
+
},
1675
+
"require": {
1676
+
"php": ">=8.2"
1677
+
},
1678
+
"require-dev": {
1679
+
"phpunit/phpunit": "^11.0",
1680
+
"symfony/process": "^4.2 || ^5"
1681
+
},
1682
+
"type": "library",
1683
+
"extra": {
1684
+
"branch-alias": {
1685
+
"dev-main": "6.0-dev"
1686
+
}
1687
+
},
1688
+
"autoload": {
1689
+
"classmap": [
1690
+
"src/"
1691
+
]
1692
+
},
1693
+
"notification-url": "https://packagist.org/downloads/",
1694
+
"license": [
1695
+
"BSD-3-Clause"
1696
+
],
1697
+
"authors": [
1698
+
{
1699
+
"name": "Sebastian Bergmann",
1700
+
"email": "sebastian@phpunit.de"
1701
+
},
1702
+
{
1703
+
"name": "Kore Nordmann",
1704
+
"email": "mail@kore-nordmann.de"
1705
+
}
1706
+
],
1707
+
"description": "Diff implementation",
1708
+
"homepage": "https://github.com/sebastianbergmann/diff",
1709
+
"keywords": [
1710
+
"diff",
1711
+
"udiff",
1712
+
"unidiff",
1713
+
"unified diff"
1714
+
],
1715
+
"support": {
1716
+
"issues": "https://github.com/sebastianbergmann/diff/issues",
1717
+
"security": "https://github.com/sebastianbergmann/diff/security/policy",
1718
+
"source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
1719
+
},
1720
+
"funding": [
1721
+
{
1722
+
"url": "https://github.com/sebastianbergmann",
1723
+
"type": "github"
1724
+
}
1725
+
],
1726
+
"time": "2024-07-03T04:53:05+00:00"
1727
+
},
1728
+
{
1729
+
"name": "spatie/array-to-xml",
1730
+
"version": "3.4.4",
1731
+
"source": {
1732
+
"type": "git",
1733
+
"url": "https://github.com/spatie/array-to-xml.git",
1734
+
"reference": "88b2f3852a922dd73177a68938f8eb2ec70c7224"
1735
+
},
1736
+
"dist": {
1737
+
"type": "zip",
1738
+
"url": "https://api.github.com/repos/spatie/array-to-xml/zipball/88b2f3852a922dd73177a68938f8eb2ec70c7224",
1739
+
"reference": "88b2f3852a922dd73177a68938f8eb2ec70c7224",
1740
+
"shasum": ""
1741
+
},
1742
+
"require": {
1743
+
"ext-dom": "*",
1744
+
"php": "^8.0"
1745
+
},
1746
+
"require-dev": {
1747
+
"mockery/mockery": "^1.2",
1748
+
"pestphp/pest": "^1.21",
1749
+
"spatie/pest-plugin-snapshots": "^1.1"
1750
+
},
1751
+
"type": "library",
1752
+
"extra": {
1753
+
"branch-alias": {
1754
+
"dev-main": "3.x-dev"
1755
+
}
1756
+
},
1757
+
"autoload": {
1758
+
"psr-4": {
1759
+
"Spatie\\ArrayToXml\\": "src"
1760
+
}
1761
+
},
1762
+
"notification-url": "https://packagist.org/downloads/",
1763
+
"license": [
1764
+
"MIT"
1765
+
],
1766
+
"authors": [
1767
+
{
1768
+
"name": "Freek Van der Herten",
1769
+
"email": "freek@spatie.be",
1770
+
"homepage": "https://freek.dev",
1771
+
"role": "Developer"
1772
+
}
1773
+
],
1774
+
"description": "Convert an array to xml",
1775
+
"homepage": "https://github.com/spatie/array-to-xml",
1776
+
"keywords": [
1777
+
"array",
1778
+
"convert",
1779
+
"xml"
1780
+
],
1781
+
"support": {
1782
+
"source": "https://github.com/spatie/array-to-xml/tree/3.4.4"
1783
+
},
1784
+
"funding": [
1785
+
{
1786
+
"url": "https://spatie.be/open-source/support-us",
1787
+
"type": "custom"
1788
+
},
1789
+
{
1790
+
"url": "https://github.com/spatie",
1791
+
"type": "github"
1792
+
}
1793
+
],
1794
+
"time": "2025-12-15T09:00:41+00:00"
1795
+
},
1796
+
{
1797
+
"name": "squizlabs/php_codesniffer",
1798
+
"version": "3.10.3",
1799
+
"source": {
1800
+
"type": "git",
1801
+
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
1802
+
"reference": "62d32998e820bddc40f99f8251958aed187a5c9c"
1803
+
},
1804
+
"dist": {
1805
+
"type": "zip",
1806
+
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/62d32998e820bddc40f99f8251958aed187a5c9c",
1807
+
"reference": "62d32998e820bddc40f99f8251958aed187a5c9c",
1808
+
"shasum": ""
1809
+
},
1810
+
"require": {
1811
+
"ext-simplexml": "*",
1812
+
"ext-tokenizer": "*",
1813
+
"ext-xmlwriter": "*",
1814
+
"php": ">=5.4.0"
1815
+
},
1816
+
"require-dev": {
1817
+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1818
+
},
1819
+
"bin": [
1820
+
"bin/phpcbf",
1821
+
"bin/phpcs"
1822
+
],
1823
+
"type": "library",
1824
+
"extra": {
1825
+
"branch-alias": {
1826
+
"dev-master": "3.x-dev"
1827
+
}
1828
+
},
1829
+
"notification-url": "https://packagist.org/downloads/",
1830
+
"license": [
1831
+
"BSD-3-Clause"
1832
+
],
1833
+
"authors": [
1834
+
{
1835
+
"name": "Greg Sherwood",
1836
+
"role": "Former lead"
1837
+
},
1838
+
{
1839
+
"name": "Juliette Reinders Folmer",
1840
+
"role": "Current lead"
1841
+
},
1842
+
{
1843
+
"name": "Contributors",
1844
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
1845
+
}
1846
+
],
1847
+
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1848
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1849
+
"keywords": [
1850
+
"phpcs",
1851
+
"standards",
1852
+
"static analysis"
1853
+
],
1854
+
"support": {
1855
+
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
1856
+
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
1857
+
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1858
+
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
1859
+
},
1860
+
"funding": [
1861
+
{
1862
+
"url": "https://github.com/PHPCSStandards",
1863
+
"type": "github"
1864
+
},
1865
+
{
1866
+
"url": "https://github.com/jrfnl",
1867
+
"type": "github"
1868
+
},
1869
+
{
1870
+
"url": "https://opencollective.com/php_codesniffer",
1871
+
"type": "open_collective"
1872
+
}
1873
+
],
1874
+
"time": "2024-09-18T10:38:58+00:00"
1875
+
},
1876
+
{
1877
+
"name": "symfony/console",
1878
+
"version": "v7.4.3",
1879
+
"source": {
1880
+
"type": "git",
1881
+
"url": "https://github.com/symfony/console.git",
1882
+
"reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6"
1883
+
},
1884
+
"dist": {
1885
+
"type": "zip",
1886
+
"url": "https://api.github.com/repos/symfony/console/zipball/732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
1887
+
"reference": "732a9ca6cd9dfd940c639062d5edbde2f6727fb6",
1888
+
"shasum": ""
1889
+
},
1890
+
"require": {
1891
+
"php": ">=8.2",
1892
+
"symfony/deprecation-contracts": "^2.5|^3",
1893
+
"symfony/polyfill-mbstring": "~1.0",
1894
+
"symfony/service-contracts": "^2.5|^3",
1895
+
"symfony/string": "^7.2|^8.0"
1896
+
},
1897
+
"conflict": {
1898
+
"symfony/dependency-injection": "<6.4",
1899
+
"symfony/dotenv": "<6.4",
1900
+
"symfony/event-dispatcher": "<6.4",
1901
+
"symfony/lock": "<6.4",
1902
+
"symfony/process": "<6.4"
1903
+
},
1904
+
"provide": {
1905
+
"psr/log-implementation": "1.0|2.0|3.0"
1906
+
},
1907
+
"require-dev": {
1908
+
"psr/log": "^1|^2|^3",
1909
+
"symfony/config": "^6.4|^7.0|^8.0",
1910
+
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
1911
+
"symfony/event-dispatcher": "^6.4|^7.0|^8.0",
1912
+
"symfony/http-foundation": "^6.4|^7.0|^8.0",
1913
+
"symfony/http-kernel": "^6.4|^7.0|^8.0",
1914
+
"symfony/lock": "^6.4|^7.0|^8.0",
1915
+
"symfony/messenger": "^6.4|^7.0|^8.0",
1916
+
"symfony/process": "^6.4|^7.0|^8.0",
1917
+
"symfony/stopwatch": "^6.4|^7.0|^8.0",
1918
+
"symfony/var-dumper": "^6.4|^7.0|^8.0"
1919
+
},
1920
+
"type": "library",
1921
+
"autoload": {
1922
+
"psr-4": {
1923
+
"Symfony\\Component\\Console\\": ""
1924
+
},
1925
+
"exclude-from-classmap": [
1926
+
"/Tests/"
1927
+
]
1928
+
},
1929
+
"notification-url": "https://packagist.org/downloads/",
1930
+
"license": [
1931
+
"MIT"
1932
+
],
1933
+
"authors": [
1934
+
{
1935
+
"name": "Fabien Potencier",
1936
+
"email": "fabien@symfony.com"
1937
+
},
1938
+
{
1939
+
"name": "Symfony Community",
1940
+
"homepage": "https://symfony.com/contributors"
1941
+
}
1942
+
],
1943
+
"description": "Eases the creation of beautiful and testable command line interfaces",
1944
+
"homepage": "https://symfony.com",
1945
+
"keywords": [
1946
+
"cli",
1947
+
"command-line",
1948
+
"console",
1949
+
"terminal"
1950
+
],
1951
+
"support": {
1952
+
"source": "https://github.com/symfony/console/tree/v7.4.3"
1953
+
},
1954
+
"funding": [
1955
+
{
1956
+
"url": "https://symfony.com/sponsor",
1957
+
"type": "custom"
1958
+
},
1959
+
{
1960
+
"url": "https://github.com/fabpot",
1961
+
"type": "github"
1962
+
},
1963
+
{
1964
+
"url": "https://github.com/nicolas-grekas",
1965
+
"type": "github"
1966
+
},
1967
+
{
1968
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1969
+
"type": "tidelift"
1970
+
}
1971
+
],
1972
+
"time": "2025-12-23T14:50:43+00:00"
1973
+
},
1974
+
{
1975
+
"name": "symfony/deprecation-contracts",
1976
+
"version": "v3.6.0",
1977
+
"source": {
1978
+
"type": "git",
1979
+
"url": "https://github.com/symfony/deprecation-contracts.git",
1980
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
1981
+
},
1982
+
"dist": {
1983
+
"type": "zip",
1984
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
1985
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
1986
+
"shasum": ""
1987
+
},
1988
+
"require": {
1989
+
"php": ">=8.1"
1990
+
},
1991
+
"type": "library",
1992
+
"extra": {
1993
+
"thanks": {
1994
+
"url": "https://github.com/symfony/contracts",
1995
+
"name": "symfony/contracts"
1996
+
},
1997
+
"branch-alias": {
1998
+
"dev-main": "3.6-dev"
1999
+
}
2000
+
},
2001
+
"autoload": {
2002
+
"files": [
2003
+
"function.php"
2004
+
]
2005
+
},
2006
+
"notification-url": "https://packagist.org/downloads/",
2007
+
"license": [
2008
+
"MIT"
2009
+
],
2010
+
"authors": [
2011
+
{
2012
+
"name": "Nicolas Grekas",
2013
+
"email": "p@tchwork.com"
2014
+
},
2015
+
{
2016
+
"name": "Symfony Community",
2017
+
"homepage": "https://symfony.com/contributors"
2018
+
}
2019
+
],
2020
+
"description": "A generic function and convention to trigger deprecation notices",
2021
+
"homepage": "https://symfony.com",
2022
+
"support": {
2023
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
2024
+
},
2025
+
"funding": [
2026
+
{
2027
+
"url": "https://symfony.com/sponsor",
2028
+
"type": "custom"
2029
+
},
2030
+
{
2031
+
"url": "https://github.com/fabpot",
2032
+
"type": "github"
2033
+
},
2034
+
{
2035
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2036
+
"type": "tidelift"
2037
+
}
2038
+
],
2039
+
"time": "2024-09-25T14:21:43+00:00"
2040
+
},
2041
+
{
2042
+
"name": "symfony/filesystem",
2043
+
"version": "v7.4.0",
2044
+
"source": {
2045
+
"type": "git",
2046
+
"url": "https://github.com/symfony/filesystem.git",
2047
+
"reference": "d551b38811096d0be9c4691d406991b47c0c630a"
2048
+
},
2049
+
"dist": {
2050
+
"type": "zip",
2051
+
"url": "https://api.github.com/repos/symfony/filesystem/zipball/d551b38811096d0be9c4691d406991b47c0c630a",
2052
+
"reference": "d551b38811096d0be9c4691d406991b47c0c630a",
2053
+
"shasum": ""
2054
+
},
2055
+
"require": {
2056
+
"php": ">=8.2",
2057
+
"symfony/polyfill-ctype": "~1.8",
2058
+
"symfony/polyfill-mbstring": "~1.8"
2059
+
},
2060
+
"require-dev": {
2061
+
"symfony/process": "^6.4|^7.0|^8.0"
2062
+
},
2063
+
"type": "library",
2064
+
"autoload": {
2065
+
"psr-4": {
2066
+
"Symfony\\Component\\Filesystem\\": ""
2067
+
},
2068
+
"exclude-from-classmap": [
2069
+
"/Tests/"
2070
+
]
2071
+
},
2072
+
"notification-url": "https://packagist.org/downloads/",
2073
+
"license": [
2074
+
"MIT"
2075
+
],
2076
+
"authors": [
2077
+
{
2078
+
"name": "Fabien Potencier",
2079
+
"email": "fabien@symfony.com"
2080
+
},
2081
+
{
2082
+
"name": "Symfony Community",
2083
+
"homepage": "https://symfony.com/contributors"
2084
+
}
2085
+
],
2086
+
"description": "Provides basic utilities for the filesystem",
2087
+
"homepage": "https://symfony.com",
2088
+
"support": {
2089
+
"source": "https://github.com/symfony/filesystem/tree/v7.4.0"
2090
+
},
2091
+
"funding": [
2092
+
{
2093
+
"url": "https://symfony.com/sponsor",
2094
+
"type": "custom"
2095
+
},
2096
+
{
2097
+
"url": "https://github.com/fabpot",
2098
+
"type": "github"
2099
+
},
2100
+
{
2101
+
"url": "https://github.com/nicolas-grekas",
2102
+
"type": "github"
2103
+
},
2104
+
{
2105
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2106
+
"type": "tidelift"
2107
+
}
2108
+
],
2109
+
"time": "2025-11-27T13:27:24+00:00"
2110
+
},
2111
+
{
2112
+
"name": "symfony/polyfill-ctype",
2113
+
"version": "v1.33.0",
2114
+
"source": {
2115
+
"type": "git",
2116
+
"url": "https://github.com/symfony/polyfill-ctype.git",
2117
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
2118
+
},
2119
+
"dist": {
2120
+
"type": "zip",
2121
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
2122
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
2123
+
"shasum": ""
2124
+
},
2125
+
"require": {
2126
+
"php": ">=7.2"
2127
+
},
2128
+
"provide": {
2129
+
"ext-ctype": "*"
2130
+
},
2131
+
"suggest": {
2132
+
"ext-ctype": "For best performance"
2133
+
},
2134
+
"type": "library",
2135
+
"extra": {
2136
+
"thanks": {
2137
+
"url": "https://github.com/symfony/polyfill",
2138
+
"name": "symfony/polyfill"
2139
+
}
2140
+
},
2141
+
"autoload": {
2142
+
"files": [
2143
+
"bootstrap.php"
2144
+
],
2145
+
"psr-4": {
2146
+
"Symfony\\Polyfill\\Ctype\\": ""
2147
+
}
2148
+
},
2149
+
"notification-url": "https://packagist.org/downloads/",
2150
+
"license": [
2151
+
"MIT"
2152
+
],
2153
+
"authors": [
2154
+
{
2155
+
"name": "Gert de Pagter",
2156
+
"email": "BackEndTea@gmail.com"
2157
+
},
2158
+
{
2159
+
"name": "Symfony Community",
2160
+
"homepage": "https://symfony.com/contributors"
2161
+
}
2162
+
],
2163
+
"description": "Symfony polyfill for ctype functions",
2164
+
"homepage": "https://symfony.com",
2165
+
"keywords": [
2166
+
"compatibility",
2167
+
"ctype",
2168
+
"polyfill",
2169
+
"portable"
2170
+
],
2171
+
"support": {
2172
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
2173
+
},
2174
+
"funding": [
2175
+
{
2176
+
"url": "https://symfony.com/sponsor",
2177
+
"type": "custom"
2178
+
},
2179
+
{
2180
+
"url": "https://github.com/fabpot",
2181
+
"type": "github"
2182
+
},
2183
+
{
2184
+
"url": "https://github.com/nicolas-grekas",
2185
+
"type": "github"
2186
+
},
2187
+
{
2188
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2189
+
"type": "tidelift"
2190
+
}
2191
+
],
2192
+
"time": "2024-09-09T11:45:10+00:00"
2193
+
},
2194
+
{
2195
+
"name": "symfony/polyfill-intl-grapheme",
2196
+
"version": "v1.33.0",
2197
+
"source": {
2198
+
"type": "git",
2199
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
2200
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
2201
+
},
2202
+
"dist": {
2203
+
"type": "zip",
2204
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
2205
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
2206
+
"shasum": ""
2207
+
},
2208
+
"require": {
2209
+
"php": ">=7.2"
2210
+
},
2211
+
"suggest": {
2212
+
"ext-intl": "For best performance"
2213
+
},
2214
+
"type": "library",
2215
+
"extra": {
2216
+
"thanks": {
2217
+
"url": "https://github.com/symfony/polyfill",
2218
+
"name": "symfony/polyfill"
2219
+
}
2220
+
},
2221
+
"autoload": {
2222
+
"files": [
2223
+
"bootstrap.php"
2224
+
],
2225
+
"psr-4": {
2226
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
2227
+
}
2228
+
},
2229
+
"notification-url": "https://packagist.org/downloads/",
2230
+
"license": [
2231
+
"MIT"
2232
+
],
2233
+
"authors": [
2234
+
{
2235
+
"name": "Nicolas Grekas",
2236
+
"email": "p@tchwork.com"
2237
+
},
2238
+
{
2239
+
"name": "Symfony Community",
2240
+
"homepage": "https://symfony.com/contributors"
2241
+
}
2242
+
],
2243
+
"description": "Symfony polyfill for intl's grapheme_* functions",
2244
+
"homepage": "https://symfony.com",
2245
+
"keywords": [
2246
+
"compatibility",
2247
+
"grapheme",
2248
+
"intl",
2249
+
"polyfill",
2250
+
"portable",
2251
+
"shim"
2252
+
],
2253
+
"support": {
2254
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
2255
+
},
2256
+
"funding": [
2257
+
{
2258
+
"url": "https://symfony.com/sponsor",
2259
+
"type": "custom"
2260
+
},
2261
+
{
2262
+
"url": "https://github.com/fabpot",
2263
+
"type": "github"
2264
+
},
2265
+
{
2266
+
"url": "https://github.com/nicolas-grekas",
2267
+
"type": "github"
2268
+
},
2269
+
{
2270
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2271
+
"type": "tidelift"
2272
+
}
2273
+
],
2274
+
"time": "2025-06-27T09:58:17+00:00"
2275
+
},
2276
+
{
2277
+
"name": "symfony/polyfill-intl-normalizer",
2278
+
"version": "v1.33.0",
2279
+
"source": {
2280
+
"type": "git",
2281
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
2282
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c"
2283
+
},
2284
+
"dist": {
2285
+
"type": "zip",
2286
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
2287
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c",
2288
+
"shasum": ""
2289
+
},
2290
+
"require": {
2291
+
"php": ">=7.2"
2292
+
},
2293
+
"suggest": {
2294
+
"ext-intl": "For best performance"
2295
+
},
2296
+
"type": "library",
2297
+
"extra": {
2298
+
"thanks": {
2299
+
"url": "https://github.com/symfony/polyfill",
2300
+
"name": "symfony/polyfill"
2301
+
}
2302
+
},
2303
+
"autoload": {
2304
+
"files": [
2305
+
"bootstrap.php"
2306
+
],
2307
+
"psr-4": {
2308
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
2309
+
},
2310
+
"classmap": [
2311
+
"Resources/stubs"
2312
+
]
2313
+
},
2314
+
"notification-url": "https://packagist.org/downloads/",
2315
+
"license": [
2316
+
"MIT"
2317
+
],
2318
+
"authors": [
2319
+
{
2320
+
"name": "Nicolas Grekas",
2321
+
"email": "p@tchwork.com"
2322
+
},
2323
+
{
2324
+
"name": "Symfony Community",
2325
+
"homepage": "https://symfony.com/contributors"
2326
+
}
2327
+
],
2328
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
2329
+
"homepage": "https://symfony.com",
2330
+
"keywords": [
2331
+
"compatibility",
2332
+
"intl",
2333
+
"normalizer",
2334
+
"polyfill",
2335
+
"portable",
2336
+
"shim"
2337
+
],
2338
+
"support": {
2339
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
2340
+
},
2341
+
"funding": [
2342
+
{
2343
+
"url": "https://symfony.com/sponsor",
2344
+
"type": "custom"
2345
+
},
2346
+
{
2347
+
"url": "https://github.com/fabpot",
2348
+
"type": "github"
2349
+
},
2350
+
{
2351
+
"url": "https://github.com/nicolas-grekas",
2352
+
"type": "github"
2353
+
},
2354
+
{
2355
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2356
+
"type": "tidelift"
2357
+
}
2358
+
],
2359
+
"time": "2024-09-09T11:45:10+00:00"
2360
+
},
2361
+
{
2362
+
"name": "symfony/polyfill-mbstring",
2363
+
"version": "v1.33.0",
2364
+
"source": {
2365
+
"type": "git",
2366
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
2367
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
2368
+
},
2369
+
"dist": {
2370
+
"type": "zip",
2371
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
2372
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
2373
+
"shasum": ""
2374
+
},
2375
+
"require": {
2376
+
"ext-iconv": "*",
2377
+
"php": ">=7.2"
2378
+
},
2379
+
"provide": {
2380
+
"ext-mbstring": "*"
2381
+
},
2382
+
"suggest": {
2383
+
"ext-mbstring": "For best performance"
2384
+
},
2385
+
"type": "library",
2386
+
"extra": {
2387
+
"thanks": {
2388
+
"url": "https://github.com/symfony/polyfill",
2389
+
"name": "symfony/polyfill"
2390
+
}
2391
+
},
2392
+
"autoload": {
2393
+
"files": [
2394
+
"bootstrap.php"
2395
+
],
2396
+
"psr-4": {
2397
+
"Symfony\\Polyfill\\Mbstring\\": ""
2398
+
}
2399
+
},
2400
+
"notification-url": "https://packagist.org/downloads/",
2401
+
"license": [
2402
+
"MIT"
2403
+
],
2404
+
"authors": [
2405
+
{
2406
+
"name": "Nicolas Grekas",
2407
+
"email": "p@tchwork.com"
2408
+
},
2409
+
{
2410
+
"name": "Symfony Community",
2411
+
"homepage": "https://symfony.com/contributors"
2412
+
}
2413
+
],
2414
+
"description": "Symfony polyfill for the Mbstring extension",
2415
+
"homepage": "https://symfony.com",
2416
+
"keywords": [
2417
+
"compatibility",
2418
+
"mbstring",
2419
+
"polyfill",
2420
+
"portable",
2421
+
"shim"
2422
+
],
2423
+
"support": {
2424
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
2425
+
},
2426
+
"funding": [
2427
+
{
2428
+
"url": "https://symfony.com/sponsor",
2429
+
"type": "custom"
2430
+
},
2431
+
{
2432
+
"url": "https://github.com/fabpot",
2433
+
"type": "github"
2434
+
},
2435
+
{
2436
+
"url": "https://github.com/nicolas-grekas",
2437
+
"type": "github"
2438
+
},
2439
+
{
2440
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2441
+
"type": "tidelift"
2442
+
}
2443
+
],
2444
+
"time": "2024-12-23T08:48:59+00:00"
2445
+
},
2446
+
{
2447
+
"name": "symfony/polyfill-php80",
2448
+
"version": "v1.33.0",
2449
+
"source": {
2450
+
"type": "git",
2451
+
"url": "https://github.com/symfony/polyfill-php80.git",
2452
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
2453
+
},
2454
+
"dist": {
2455
+
"type": "zip",
2456
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2457
+
"reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
2458
+
"shasum": ""
2459
+
},
2460
+
"require": {
2461
+
"php": ">=7.2"
2462
+
},
2463
+
"type": "library",
2464
+
"extra": {
2465
+
"thanks": {
2466
+
"url": "https://github.com/symfony/polyfill",
2467
+
"name": "symfony/polyfill"
2468
+
}
2469
+
},
2470
+
"autoload": {
2471
+
"files": [
2472
+
"bootstrap.php"
2473
+
],
2474
+
"psr-4": {
2475
+
"Symfony\\Polyfill\\Php80\\": ""
2476
+
},
2477
+
"classmap": [
2478
+
"Resources/stubs"
2479
+
]
2480
+
},
2481
+
"notification-url": "https://packagist.org/downloads/",
2482
+
"license": [
2483
+
"MIT"
2484
+
],
2485
+
"authors": [
2486
+
{
2487
+
"name": "Ion Bazan",
2488
+
"email": "ion.bazan@gmail.com"
2489
+
},
2490
+
{
2491
+
"name": "Nicolas Grekas",
2492
+
"email": "p@tchwork.com"
2493
+
},
2494
+
{
2495
+
"name": "Symfony Community",
2496
+
"homepage": "https://symfony.com/contributors"
2497
+
}
2498
+
],
2499
+
"description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
2500
+
"homepage": "https://symfony.com",
2501
+
"keywords": [
2502
+
"compatibility",
2503
+
"polyfill",
2504
+
"portable",
2505
+
"shim"
2506
+
],
2507
+
"support": {
2508
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
2509
+
},
2510
+
"funding": [
2511
+
{
2512
+
"url": "https://symfony.com/sponsor",
2513
+
"type": "custom"
2514
+
},
2515
+
{
2516
+
"url": "https://github.com/fabpot",
2517
+
"type": "github"
2518
+
},
2519
+
{
2520
+
"url": "https://github.com/nicolas-grekas",
2521
+
"type": "github"
2522
+
},
2523
+
{
2524
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2525
+
"type": "tidelift"
2526
+
}
2527
+
],
2528
+
"time": "2025-01-02T08:10:11+00:00"
2529
+
},
2530
+
{
2531
+
"name": "symfony/service-contracts",
2532
+
"version": "v3.6.1",
2533
+
"source": {
2534
+
"type": "git",
2535
+
"url": "https://github.com/symfony/service-contracts.git",
2536
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
2537
+
},
2538
+
"dist": {
2539
+
"type": "zip",
2540
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
2541
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
2542
+
"shasum": ""
2543
+
},
2544
+
"require": {
2545
+
"php": ">=8.1",
2546
+
"psr/container": "^1.1|^2.0",
2547
+
"symfony/deprecation-contracts": "^2.5|^3"
2548
+
},
2549
+
"conflict": {
2550
+
"ext-psr": "<1.1|>=2"
2551
+
},
2552
+
"type": "library",
2553
+
"extra": {
2554
+
"thanks": {
2555
+
"url": "https://github.com/symfony/contracts",
2556
+
"name": "symfony/contracts"
2557
+
},
2558
+
"branch-alias": {
2559
+
"dev-main": "3.6-dev"
2560
+
}
2561
+
},
2562
+
"autoload": {
2563
+
"psr-4": {
2564
+
"Symfony\\Contracts\\Service\\": ""
2565
+
},
2566
+
"exclude-from-classmap": [
2567
+
"/Test/"
2568
+
]
2569
+
},
2570
+
"notification-url": "https://packagist.org/downloads/",
2571
+
"license": [
2572
+
"MIT"
2573
+
],
2574
+
"authors": [
2575
+
{
2576
+
"name": "Nicolas Grekas",
2577
+
"email": "p@tchwork.com"
2578
+
},
2579
+
{
2580
+
"name": "Symfony Community",
2581
+
"homepage": "https://symfony.com/contributors"
2582
+
}
2583
+
],
2584
+
"description": "Generic abstractions related to writing services",
2585
+
"homepage": "https://symfony.com",
2586
+
"keywords": [
2587
+
"abstractions",
2588
+
"contracts",
2589
+
"decoupling",
2590
+
"interfaces",
2591
+
"interoperability",
2592
+
"standards"
2593
+
],
2594
+
"support": {
2595
+
"source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
2596
+
},
2597
+
"funding": [
2598
+
{
2599
+
"url": "https://symfony.com/sponsor",
2600
+
"type": "custom"
2601
+
},
2602
+
{
2603
+
"url": "https://github.com/fabpot",
2604
+
"type": "github"
2605
+
},
2606
+
{
2607
+
"url": "https://github.com/nicolas-grekas",
2608
+
"type": "github"
2609
+
},
2610
+
{
2611
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2612
+
"type": "tidelift"
2613
+
}
2614
+
],
2615
+
"time": "2025-07-15T11:30:57+00:00"
2616
+
},
2617
+
{
2618
+
"name": "symfony/string",
2619
+
"version": "v7.4.0",
2620
+
"source": {
2621
+
"type": "git",
2622
+
"url": "https://github.com/symfony/string.git",
2623
+
"reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003"
2624
+
},
2625
+
"dist": {
2626
+
"type": "zip",
2627
+
"url": "https://api.github.com/repos/symfony/string/zipball/d50e862cb0a0e0886f73ca1f31b865efbb795003",
2628
+
"reference": "d50e862cb0a0e0886f73ca1f31b865efbb795003",
2629
+
"shasum": ""
2630
+
},
2631
+
"require": {
2632
+
"php": ">=8.2",
2633
+
"symfony/deprecation-contracts": "^2.5|^3.0",
2634
+
"symfony/polyfill-ctype": "~1.8",
2635
+
"symfony/polyfill-intl-grapheme": "~1.33",
2636
+
"symfony/polyfill-intl-normalizer": "~1.0",
2637
+
"symfony/polyfill-mbstring": "~1.0"
2638
+
},
2639
+
"conflict": {
2640
+
"symfony/translation-contracts": "<2.5"
2641
+
},
2642
+
"require-dev": {
2643
+
"symfony/emoji": "^7.1|^8.0",
2644
+
"symfony/http-client": "^6.4|^7.0|^8.0",
2645
+
"symfony/intl": "^6.4|^7.0|^8.0",
2646
+
"symfony/translation-contracts": "^2.5|^3.0",
2647
+
"symfony/var-exporter": "^6.4|^7.0|^8.0"
2648
+
},
2649
+
"type": "library",
2650
+
"autoload": {
2651
+
"files": [
2652
+
"Resources/functions.php"
2653
+
],
2654
+
"psr-4": {
2655
+
"Symfony\\Component\\String\\": ""
2656
+
},
2657
+
"exclude-from-classmap": [
2658
+
"/Tests/"
2659
+
]
2660
+
},
2661
+
"notification-url": "https://packagist.org/downloads/",
2662
+
"license": [
2663
+
"MIT"
2664
+
],
2665
+
"authors": [
2666
+
{
2667
+
"name": "Nicolas Grekas",
2668
+
"email": "p@tchwork.com"
2669
+
},
2670
+
{
2671
+
"name": "Symfony Community",
2672
+
"homepage": "https://symfony.com/contributors"
2673
+
}
2674
+
],
2675
+
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
2676
+
"homepage": "https://symfony.com",
2677
+
"keywords": [
2678
+
"grapheme",
2679
+
"i18n",
2680
+
"string",
2681
+
"unicode",
2682
+
"utf-8",
2683
+
"utf8"
2684
+
],
2685
+
"support": {
2686
+
"source": "https://github.com/symfony/string/tree/v7.4.0"
2687
+
},
2688
+
"funding": [
2689
+
{
2690
+
"url": "https://symfony.com/sponsor",
2691
+
"type": "custom"
2692
+
},
2693
+
{
2694
+
"url": "https://github.com/fabpot",
2695
+
"type": "github"
2696
+
},
2697
+
{
2698
+
"url": "https://github.com/nicolas-grekas",
2699
+
"type": "github"
2700
+
},
2701
+
{
2702
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2703
+
"type": "tidelift"
2704
+
}
2705
+
],
2706
+
"time": "2025-11-27T13:27:24+00:00"
2707
+
},
2708
+
{
2709
+
"name": "vimeo/psalm",
2710
+
"version": "5.26.1",
2711
+
"source": {
2712
+
"type": "git",
2713
+
"url": "https://github.com/vimeo/psalm.git",
2714
+
"reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0"
2715
+
},
2716
+
"dist": {
2717
+
"type": "zip",
2718
+
"url": "https://api.github.com/repos/vimeo/psalm/zipball/d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
2719
+
"reference": "d747f6500b38ac4f7dfc5edbcae6e4b637d7add0",
2720
+
"shasum": ""
2721
+
},
2722
+
"require": {
2723
+
"amphp/amp": "^2.4.2",
2724
+
"amphp/byte-stream": "^1.5",
2725
+
"composer-runtime-api": "^2",
2726
+
"composer/semver": "^1.4 || ^2.0 || ^3.0",
2727
+
"composer/xdebug-handler": "^2.0 || ^3.0",
2728
+
"dnoegel/php-xdg-base-dir": "^0.1.1",
2729
+
"ext-ctype": "*",
2730
+
"ext-dom": "*",
2731
+
"ext-json": "*",
2732
+
"ext-libxml": "*",
2733
+
"ext-mbstring": "*",
2734
+
"ext-simplexml": "*",
2735
+
"ext-tokenizer": "*",
2736
+
"felixfbecker/advanced-json-rpc": "^3.1",
2737
+
"felixfbecker/language-server-protocol": "^1.5.2",
2738
+
"fidry/cpu-core-counter": "^0.4.1 || ^0.5.1 || ^1.0.0",
2739
+
"netresearch/jsonmapper": "^1.0 || ^2.0 || ^3.0 || ^4.0",
2740
+
"nikic/php-parser": "^4.17",
2741
+
"php": "^7.4 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
2742
+
"sebastian/diff": "^4.0 || ^5.0 || ^6.0",
2743
+
"spatie/array-to-xml": "^2.17.0 || ^3.0",
2744
+
"symfony/console": "^4.1.6 || ^5.0 || ^6.0 || ^7.0",
2745
+
"symfony/filesystem": "^5.4 || ^6.0 || ^7.0"
2746
+
},
2747
+
"conflict": {
2748
+
"nikic/php-parser": "4.17.0"
2749
+
},
2750
+
"provide": {
2751
+
"psalm/psalm": "self.version"
2752
+
},
2753
+
"require-dev": {
2754
+
"amphp/phpunit-util": "^2.0",
2755
+
"bamarni/composer-bin-plugin": "^1.4",
2756
+
"brianium/paratest": "^6.9",
2757
+
"ext-curl": "*",
2758
+
"mockery/mockery": "^1.5",
2759
+
"nunomaduro/mock-final-classes": "^1.1",
2760
+
"php-parallel-lint/php-parallel-lint": "^1.2",
2761
+
"phpstan/phpdoc-parser": "^1.6",
2762
+
"phpunit/phpunit": "^9.6",
2763
+
"psalm/plugin-mockery": "^1.1",
2764
+
"psalm/plugin-phpunit": "^0.18",
2765
+
"slevomat/coding-standard": "^8.4",
2766
+
"squizlabs/php_codesniffer": "^3.6",
2767
+
"symfony/process": "^4.4 || ^5.0 || ^6.0 || ^7.0"
2768
+
},
2769
+
"suggest": {
2770
+
"ext-curl": "In order to send data to shepherd",
2771
+
"ext-igbinary": "^2.0.5 is required, used to serialize caching data"
2772
+
},
2773
+
"bin": [
2774
+
"psalm",
2775
+
"psalm-language-server",
2776
+
"psalm-plugin",
2777
+
"psalm-refactor",
2778
+
"psalter"
2779
+
],
2780
+
"type": "project",
2781
+
"extra": {
2782
+
"branch-alias": {
2783
+
"dev-1.x": "1.x-dev",
2784
+
"dev-2.x": "2.x-dev",
2785
+
"dev-3.x": "3.x-dev",
2786
+
"dev-4.x": "4.x-dev",
2787
+
"dev-master": "5.x-dev"
2788
+
}
2789
+
},
2790
+
"autoload": {
2791
+
"psr-4": {
2792
+
"Psalm\\": "src/Psalm/"
2793
+
}
2794
+
},
2795
+
"notification-url": "https://packagist.org/downloads/",
2796
+
"license": [
2797
+
"MIT"
2798
+
],
2799
+
"authors": [
2800
+
{
2801
+
"name": "Matthew Brown"
2802
+
}
2803
+
],
2804
+
"description": "A static analysis tool for finding errors in PHP applications",
2805
+
"keywords": [
2806
+
"code",
2807
+
"inspection",
2808
+
"php",
2809
+
"static analysis"
2810
+
],
2811
+
"support": {
2812
+
"docs": "https://psalm.dev/docs",
2813
+
"issues": "https://github.com/vimeo/psalm/issues",
2814
+
"source": "https://github.com/vimeo/psalm"
2815
+
},
2816
+
"time": "2024-09-08T18:53:08+00:00"
2817
+
},
2818
+
{
2819
+
"name": "webmozart/assert",
2820
+
"version": "2.0.0",
2821
+
"source": {
2822
+
"type": "git",
2823
+
"url": "https://github.com/webmozarts/assert.git",
2824
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54"
2825
+
},
2826
+
"dist": {
2827
+
"type": "zip",
2828
+
"url": "https://api.github.com/repos/webmozarts/assert/zipball/1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
2829
+
"reference": "1b34b004e35a164bc5bb6ebd33c844b2d8069a54",
2830
+
"shasum": ""
2831
+
},
2832
+
"require": {
2833
+
"ext-ctype": "*",
2834
+
"ext-date": "*",
2835
+
"ext-filter": "*",
2836
+
"php": "^8.2"
2837
+
},
2838
+
"suggest": {
2839
+
"ext-intl": "",
2840
+
"ext-simplexml": "",
2841
+
"ext-spl": ""
2842
+
},
2843
+
"type": "library",
2844
+
"extra": {
2845
+
"branch-alias": {
2846
+
"dev-feature/2-0": "2.0-dev"
2847
+
}
2848
+
},
2849
+
"autoload": {
2850
+
"psr-4": {
2851
+
"Webmozart\\Assert\\": "src/"
2852
+
}
2853
+
},
2854
+
"notification-url": "https://packagist.org/downloads/",
2855
+
"license": [
2856
+
"MIT"
2857
+
],
2858
+
"authors": [
2859
+
{
2860
+
"name": "Bernhard Schussek",
2861
+
"email": "bschussek@gmail.com"
2862
+
},
2863
+
{
2864
+
"name": "Woody Gilk",
2865
+
"email": "woody.gilk@gmail.com"
2866
+
}
2867
+
],
2868
+
"description": "Assertions to validate method input/output with nice error messages.",
2869
+
"keywords": [
2870
+
"assert",
2871
+
"check",
2872
+
"validate"
2873
+
],
2874
+
"support": {
2875
+
"issues": "https://github.com/webmozarts/assert/issues",
2876
+
"source": "https://github.com/webmozarts/assert/tree/2.0.0"
2877
+
},
2878
+
"time": "2025-12-16T21:36:00+00:00"
2879
+
}
2880
+
],
2881
+
"aliases": [],
2882
+
"minimum-stability": "stable",
2883
+
"stability-flags": {},
2884
+
"prefer-stable": false,
2885
+
"prefer-lowest": false,
2886
+
"platform": {
2887
+
"php": ">=8.1"
2888
+
},
2889
+
"platform-dev": {},
2890
+
"plugin-api-version": "2.6.0"
2891
+
}
+3
packetmix/systems/wiki/wiki/Network.composer.lock.license
+3
packetmix/systems/wiki/wiki/Network.composer.lock.license
+1942
packetmix/systems/wiki/wiki/OpenIDConnect.composer.lock
+1942
packetmix/systems/wiki/wiki/OpenIDConnect.composer.lock
···
1
+
{
2
+
"_readme": [
3
+
"This file locks the dependencies of your project to a known state",
4
+
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5
+
"This file is @generated automatically"
6
+
],
7
+
"content-hash": "4df04ce7ac03ce7c6b33de0c2acd0e15",
8
+
"packages": [
9
+
{
10
+
"name": "composer/installers",
11
+
"version": "v2.3.0",
12
+
"source": {
13
+
"type": "git",
14
+
"url": "https://github.com/composer/installers.git",
15
+
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e"
16
+
},
17
+
"dist": {
18
+
"type": "zip",
19
+
"url": "https://api.github.com/repos/composer/installers/zipball/12fb2dfe5e16183de69e784a7b84046c43d97e8e",
20
+
"reference": "12fb2dfe5e16183de69e784a7b84046c43d97e8e",
21
+
"shasum": ""
22
+
},
23
+
"require": {
24
+
"composer-plugin-api": "^1.0 || ^2.0",
25
+
"php": "^7.2 || ^8.0"
26
+
},
27
+
"require-dev": {
28
+
"composer/composer": "^1.10.27 || ^2.7",
29
+
"composer/semver": "^1.7.2 || ^3.4.0",
30
+
"phpstan/phpstan": "^1.11",
31
+
"phpstan/phpstan-phpunit": "^1",
32
+
"symfony/phpunit-bridge": "^7.1.1",
33
+
"symfony/process": "^5 || ^6 || ^7"
34
+
},
35
+
"type": "composer-plugin",
36
+
"extra": {
37
+
"class": "Composer\\Installers\\Plugin",
38
+
"branch-alias": {
39
+
"dev-main": "2.x-dev"
40
+
},
41
+
"plugin-modifies-install-path": true
42
+
},
43
+
"autoload": {
44
+
"psr-4": {
45
+
"Composer\\Installers\\": "src/Composer/Installers"
46
+
}
47
+
},
48
+
"notification-url": "https://packagist.org/downloads/",
49
+
"license": [
50
+
"MIT"
51
+
],
52
+
"authors": [
53
+
{
54
+
"name": "Kyle Robinson Young",
55
+
"email": "kyle@dontkry.com",
56
+
"homepage": "https://github.com/shama"
57
+
}
58
+
],
59
+
"description": "A multi-framework Composer library installer",
60
+
"homepage": "https://composer.github.io/installers/",
61
+
"keywords": [
62
+
"Dolibarr",
63
+
"Eliasis",
64
+
"Hurad",
65
+
"ImageCMS",
66
+
"Kanboard",
67
+
"Lan Management System",
68
+
"MODX Evo",
69
+
"MantisBT",
70
+
"Mautic",
71
+
"Maya",
72
+
"OXID",
73
+
"Plentymarkets",
74
+
"Porto",
75
+
"RadPHP",
76
+
"SMF",
77
+
"Starbug",
78
+
"Thelia",
79
+
"Whmcs",
80
+
"WolfCMS",
81
+
"agl",
82
+
"annotatecms",
83
+
"attogram",
84
+
"bitrix",
85
+
"cakephp",
86
+
"chef",
87
+
"cockpit",
88
+
"codeigniter",
89
+
"concrete5",
90
+
"concreteCMS",
91
+
"croogo",
92
+
"dokuwiki",
93
+
"drupal",
94
+
"eZ Platform",
95
+
"elgg",
96
+
"expressionengine",
97
+
"fuelphp",
98
+
"grav",
99
+
"installer",
100
+
"itop",
101
+
"known",
102
+
"kohana",
103
+
"laravel",
104
+
"lavalite",
105
+
"lithium",
106
+
"magento",
107
+
"majima",
108
+
"mako",
109
+
"matomo",
110
+
"mediawiki",
111
+
"miaoxing",
112
+
"modulework",
113
+
"modx",
114
+
"moodle",
115
+
"osclass",
116
+
"pantheon",
117
+
"phpbb",
118
+
"piwik",
119
+
"ppi",
120
+
"processwire",
121
+
"puppet",
122
+
"pxcms",
123
+
"reindex",
124
+
"roundcube",
125
+
"shopware",
126
+
"silverstripe",
127
+
"sydes",
128
+
"sylius",
129
+
"tastyigniter",
130
+
"wordpress",
131
+
"yawik",
132
+
"zend",
133
+
"zikula"
134
+
],
135
+
"support": {
136
+
"issues": "https://github.com/composer/installers/issues",
137
+
"source": "https://github.com/composer/installers/tree/v2.3.0"
138
+
},
139
+
"funding": [
140
+
{
141
+
"url": "https://packagist.com",
142
+
"type": "custom"
143
+
},
144
+
{
145
+
"url": "https://github.com/composer",
146
+
"type": "github"
147
+
},
148
+
{
149
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
150
+
"type": "tidelift"
151
+
}
152
+
],
153
+
"time": "2024-06-24T20:46:46+00:00"
154
+
},
155
+
{
156
+
"name": "jumbojett/openid-connect-php",
157
+
"version": "v1.0.2",
158
+
"source": {
159
+
"type": "git",
160
+
"url": "https://github.com/jumbojett/OpenID-Connect-PHP.git",
161
+
"reference": "f327e7eb0626d55ddb6abc7b7c9e6ad3af4e5d51"
162
+
},
163
+
"dist": {
164
+
"type": "zip",
165
+
"url": "https://api.github.com/repos/jumbojett/OpenID-Connect-PHP/zipball/f327e7eb0626d55ddb6abc7b7c9e6ad3af4e5d51",
166
+
"reference": "f327e7eb0626d55ddb6abc7b7c9e6ad3af4e5d51",
167
+
"shasum": ""
168
+
},
169
+
"require": {
170
+
"ext-curl": "*",
171
+
"ext-json": "*",
172
+
"php": ">=7.0",
173
+
"phpseclib/phpseclib": "^3.0.7"
174
+
},
175
+
"require-dev": {
176
+
"phpunit/phpunit": "<10",
177
+
"roave/security-advisories": "dev-latest",
178
+
"yoast/phpunit-polyfills": "^2.0"
179
+
},
180
+
"type": "library",
181
+
"autoload": {
182
+
"classmap": [
183
+
"src/"
184
+
]
185
+
},
186
+
"notification-url": "https://packagist.org/downloads/",
187
+
"license": [
188
+
"Apache-2.0"
189
+
],
190
+
"description": "Bare-bones OpenID Connect client",
191
+
"support": {
192
+
"issues": "https://github.com/jumbojett/OpenID-Connect-PHP/issues",
193
+
"source": "https://github.com/jumbojett/OpenID-Connect-PHP/tree/v1.0.2"
194
+
},
195
+
"time": "2024-09-13T07:08:11+00:00"
196
+
},
197
+
{
198
+
"name": "paragonie/constant_time_encoding",
199
+
"version": "v3.1.3",
200
+
"source": {
201
+
"type": "git",
202
+
"url": "https://github.com/paragonie/constant_time_encoding.git",
203
+
"reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77"
204
+
},
205
+
"dist": {
206
+
"type": "zip",
207
+
"url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
208
+
"reference": "d5b01a39b3415c2cd581d3bd3a3575c1ebbd8e77",
209
+
"shasum": ""
210
+
},
211
+
"require": {
212
+
"php": "^8"
213
+
},
214
+
"require-dev": {
215
+
"infection/infection": "^0",
216
+
"nikic/php-fuzzer": "^0",
217
+
"phpunit/phpunit": "^9|^10|^11",
218
+
"vimeo/psalm": "^4|^5|^6"
219
+
},
220
+
"type": "library",
221
+
"autoload": {
222
+
"psr-4": {
223
+
"ParagonIE\\ConstantTime\\": "src/"
224
+
}
225
+
},
226
+
"notification-url": "https://packagist.org/downloads/",
227
+
"license": [
228
+
"MIT"
229
+
],
230
+
"authors": [
231
+
{
232
+
"name": "Paragon Initiative Enterprises",
233
+
"email": "security@paragonie.com",
234
+
"homepage": "https://paragonie.com",
235
+
"role": "Maintainer"
236
+
},
237
+
{
238
+
"name": "Steve 'Sc00bz' Thomas",
239
+
"email": "steve@tobtu.com",
240
+
"homepage": "https://www.tobtu.com",
241
+
"role": "Original Developer"
242
+
}
243
+
],
244
+
"description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
245
+
"keywords": [
246
+
"base16",
247
+
"base32",
248
+
"base32_decode",
249
+
"base32_encode",
250
+
"base64",
251
+
"base64_decode",
252
+
"base64_encode",
253
+
"bin2hex",
254
+
"encoding",
255
+
"hex",
256
+
"hex2bin",
257
+
"rfc4648"
258
+
],
259
+
"support": {
260
+
"email": "info@paragonie.com",
261
+
"issues": "https://github.com/paragonie/constant_time_encoding/issues",
262
+
"source": "https://github.com/paragonie/constant_time_encoding"
263
+
},
264
+
"time": "2025-09-24T15:06:41+00:00"
265
+
},
266
+
{
267
+
"name": "paragonie/random_compat",
268
+
"version": "v9.99.100",
269
+
"source": {
270
+
"type": "git",
271
+
"url": "https://github.com/paragonie/random_compat.git",
272
+
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
273
+
},
274
+
"dist": {
275
+
"type": "zip",
276
+
"url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
277
+
"reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
278
+
"shasum": ""
279
+
},
280
+
"require": {
281
+
"php": ">= 7"
282
+
},
283
+
"require-dev": {
284
+
"phpunit/phpunit": "4.*|5.*",
285
+
"vimeo/psalm": "^1"
286
+
},
287
+
"suggest": {
288
+
"ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
289
+
},
290
+
"type": "library",
291
+
"notification-url": "https://packagist.org/downloads/",
292
+
"license": [
293
+
"MIT"
294
+
],
295
+
"authors": [
296
+
{
297
+
"name": "Paragon Initiative Enterprises",
298
+
"email": "security@paragonie.com",
299
+
"homepage": "https://paragonie.com"
300
+
}
301
+
],
302
+
"description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
303
+
"keywords": [
304
+
"csprng",
305
+
"polyfill",
306
+
"pseudorandom",
307
+
"random"
308
+
],
309
+
"support": {
310
+
"email": "info@paragonie.com",
311
+
"issues": "https://github.com/paragonie/random_compat/issues",
312
+
"source": "https://github.com/paragonie/random_compat"
313
+
},
314
+
"time": "2020-10-15T08:29:30+00:00"
315
+
},
316
+
{
317
+
"name": "phpseclib/phpseclib",
318
+
"version": "3.0.48",
319
+
"source": {
320
+
"type": "git",
321
+
"url": "https://github.com/phpseclib/phpseclib.git",
322
+
"reference": "64065a5679c50acb886e82c07aa139b0f757bb89"
323
+
},
324
+
"dist": {
325
+
"type": "zip",
326
+
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/64065a5679c50acb886e82c07aa139b0f757bb89",
327
+
"reference": "64065a5679c50acb886e82c07aa139b0f757bb89",
328
+
"shasum": ""
329
+
},
330
+
"require": {
331
+
"paragonie/constant_time_encoding": "^1|^2|^3",
332
+
"paragonie/random_compat": "^1.4|^2.0|^9.99.99",
333
+
"php": ">=5.6.1"
334
+
},
335
+
"require-dev": {
336
+
"phpunit/phpunit": "*"
337
+
},
338
+
"suggest": {
339
+
"ext-dom": "Install the DOM extension to load XML formatted public keys.",
340
+
"ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
341
+
"ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
342
+
"ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
343
+
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
344
+
},
345
+
"type": "library",
346
+
"autoload": {
347
+
"files": [
348
+
"phpseclib/bootstrap.php"
349
+
],
350
+
"psr-4": {
351
+
"phpseclib3\\": "phpseclib/"
352
+
}
353
+
},
354
+
"notification-url": "https://packagist.org/downloads/",
355
+
"license": [
356
+
"MIT"
357
+
],
358
+
"authors": [
359
+
{
360
+
"name": "Jim Wigginton",
361
+
"email": "terrafrost@php.net",
362
+
"role": "Lead Developer"
363
+
},
364
+
{
365
+
"name": "Patrick Monnerat",
366
+
"email": "pm@datasphere.ch",
367
+
"role": "Developer"
368
+
},
369
+
{
370
+
"name": "Andreas Fischer",
371
+
"email": "bantu@phpbb.com",
372
+
"role": "Developer"
373
+
},
374
+
{
375
+
"name": "Hans-Jรผrgen Petrich",
376
+
"email": "petrich@tronic-media.com",
377
+
"role": "Developer"
378
+
},
379
+
{
380
+
"name": "Graham Campbell",
381
+
"email": "graham@alt-three.com",
382
+
"role": "Developer"
383
+
}
384
+
],
385
+
"description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
386
+
"homepage": "http://phpseclib.sourceforge.net",
387
+
"keywords": [
388
+
"BigInteger",
389
+
"aes",
390
+
"asn.1",
391
+
"asn1",
392
+
"blowfish",
393
+
"crypto",
394
+
"cryptography",
395
+
"encryption",
396
+
"rsa",
397
+
"security",
398
+
"sftp",
399
+
"signature",
400
+
"signing",
401
+
"ssh",
402
+
"twofish",
403
+
"x.509",
404
+
"x509"
405
+
],
406
+
"support": {
407
+
"issues": "https://github.com/phpseclib/phpseclib/issues",
408
+
"source": "https://github.com/phpseclib/phpseclib/tree/3.0.48"
409
+
},
410
+
"funding": [
411
+
{
412
+
"url": "https://github.com/terrafrost",
413
+
"type": "github"
414
+
},
415
+
{
416
+
"url": "https://www.patreon.com/phpseclib",
417
+
"type": "patreon"
418
+
},
419
+
{
420
+
"url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
421
+
"type": "tidelift"
422
+
}
423
+
],
424
+
"time": "2025-12-15T11:51:42+00:00"
425
+
}
426
+
],
427
+
"packages-dev": [
428
+
{
429
+
"name": "composer/semver",
430
+
"version": "3.4.4",
431
+
"source": {
432
+
"type": "git",
433
+
"url": "https://github.com/composer/semver.git",
434
+
"reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
435
+
},
436
+
"dist": {
437
+
"type": "zip",
438
+
"url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
439
+
"reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
440
+
"shasum": ""
441
+
},
442
+
"require": {
443
+
"php": "^5.3.2 || ^7.0 || ^8.0"
444
+
},
445
+
"require-dev": {
446
+
"phpstan/phpstan": "^1.11",
447
+
"symfony/phpunit-bridge": "^3 || ^7"
448
+
},
449
+
"type": "library",
450
+
"extra": {
451
+
"branch-alias": {
452
+
"dev-main": "3.x-dev"
453
+
}
454
+
},
455
+
"autoload": {
456
+
"psr-4": {
457
+
"Composer\\Semver\\": "src"
458
+
}
459
+
},
460
+
"notification-url": "https://packagist.org/downloads/",
461
+
"license": [
462
+
"MIT"
463
+
],
464
+
"authors": [
465
+
{
466
+
"name": "Nils Adermann",
467
+
"email": "naderman@naderman.de",
468
+
"homepage": "http://www.naderman.de"
469
+
},
470
+
{
471
+
"name": "Jordi Boggiano",
472
+
"email": "j.boggiano@seld.be",
473
+
"homepage": "http://seld.be"
474
+
},
475
+
{
476
+
"name": "Rob Bast",
477
+
"email": "rob.bast@gmail.com",
478
+
"homepage": "http://robbast.nl"
479
+
}
480
+
],
481
+
"description": "Semver library that offers utilities, version constraint parsing and validation.",
482
+
"keywords": [
483
+
"semantic",
484
+
"semver",
485
+
"validation",
486
+
"versioning"
487
+
],
488
+
"support": {
489
+
"irc": "ircs://irc.libera.chat:6697/composer",
490
+
"issues": "https://github.com/composer/semver/issues",
491
+
"source": "https://github.com/composer/semver/tree/3.4.4"
492
+
},
493
+
"funding": [
494
+
{
495
+
"url": "https://packagist.com",
496
+
"type": "custom"
497
+
},
498
+
{
499
+
"url": "https://github.com/composer",
500
+
"type": "github"
501
+
}
502
+
],
503
+
"time": "2025-08-20T19:15:30+00:00"
504
+
},
505
+
{
506
+
"name": "composer/spdx-licenses",
507
+
"version": "1.5.9",
508
+
"source": {
509
+
"type": "git",
510
+
"url": "https://github.com/composer/spdx-licenses.git",
511
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f"
512
+
},
513
+
"dist": {
514
+
"type": "zip",
515
+
"url": "https://api.github.com/repos/composer/spdx-licenses/zipball/edf364cefe8c43501e21e88110aac10b284c3c9f",
516
+
"reference": "edf364cefe8c43501e21e88110aac10b284c3c9f",
517
+
"shasum": ""
518
+
},
519
+
"require": {
520
+
"php": "^5.3.2 || ^7.0 || ^8.0"
521
+
},
522
+
"require-dev": {
523
+
"phpstan/phpstan": "^1.11",
524
+
"symfony/phpunit-bridge": "^3 || ^7"
525
+
},
526
+
"type": "library",
527
+
"extra": {
528
+
"branch-alias": {
529
+
"dev-main": "1.x-dev"
530
+
}
531
+
},
532
+
"autoload": {
533
+
"psr-4": {
534
+
"Composer\\Spdx\\": "src"
535
+
}
536
+
},
537
+
"notification-url": "https://packagist.org/downloads/",
538
+
"license": [
539
+
"MIT"
540
+
],
541
+
"authors": [
542
+
{
543
+
"name": "Nils Adermann",
544
+
"email": "naderman@naderman.de",
545
+
"homepage": "http://www.naderman.de"
546
+
},
547
+
{
548
+
"name": "Jordi Boggiano",
549
+
"email": "j.boggiano@seld.be",
550
+
"homepage": "http://seld.be"
551
+
},
552
+
{
553
+
"name": "Rob Bast",
554
+
"email": "rob.bast@gmail.com",
555
+
"homepage": "http://robbast.nl"
556
+
}
557
+
],
558
+
"description": "SPDX licenses list and validation library.",
559
+
"keywords": [
560
+
"license",
561
+
"spdx",
562
+
"validator"
563
+
],
564
+
"support": {
565
+
"irc": "ircs://irc.libera.chat:6697/composer",
566
+
"issues": "https://github.com/composer/spdx-licenses/issues",
567
+
"source": "https://github.com/composer/spdx-licenses/tree/1.5.9"
568
+
},
569
+
"funding": [
570
+
{
571
+
"url": "https://packagist.com",
572
+
"type": "custom"
573
+
},
574
+
{
575
+
"url": "https://github.com/composer",
576
+
"type": "github"
577
+
},
578
+
{
579
+
"url": "https://tidelift.com/funding/github/packagist/composer/composer",
580
+
"type": "tidelift"
581
+
}
582
+
],
583
+
"time": "2025-05-12T21:07:07+00:00"
584
+
},
585
+
{
586
+
"name": "dealerdirect/phpcodesniffer-composer-installer",
587
+
"version": "v1.2.0",
588
+
"source": {
589
+
"type": "git",
590
+
"url": "https://github.com/PHPCSStandards/composer-installer.git",
591
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1"
592
+
},
593
+
"dist": {
594
+
"type": "zip",
595
+
"url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/845eb62303d2ca9b289ef216356568ccc075ffd1",
596
+
"reference": "845eb62303d2ca9b289ef216356568ccc075ffd1",
597
+
"shasum": ""
598
+
},
599
+
"require": {
600
+
"composer-plugin-api": "^2.2",
601
+
"php": ">=5.4",
602
+
"squizlabs/php_codesniffer": "^3.1.0 || ^4.0"
603
+
},
604
+
"require-dev": {
605
+
"composer/composer": "^2.2",
606
+
"ext-json": "*",
607
+
"ext-zip": "*",
608
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
609
+
"phpcompatibility/php-compatibility": "^9.0 || ^10.0.0@dev",
610
+
"yoast/phpunit-polyfills": "^1.0"
611
+
},
612
+
"type": "composer-plugin",
613
+
"extra": {
614
+
"class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
615
+
},
616
+
"autoload": {
617
+
"psr-4": {
618
+
"PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
619
+
}
620
+
},
621
+
"notification-url": "https://packagist.org/downloads/",
622
+
"license": [
623
+
"MIT"
624
+
],
625
+
"authors": [
626
+
{
627
+
"name": "Franck Nijhof",
628
+
"email": "opensource@frenck.dev",
629
+
"homepage": "https://frenck.dev",
630
+
"role": "Open source developer"
631
+
},
632
+
{
633
+
"name": "Contributors",
634
+
"homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
635
+
}
636
+
],
637
+
"description": "PHP_CodeSniffer Standards Composer Installer Plugin",
638
+
"keywords": [
639
+
"PHPCodeSniffer",
640
+
"PHP_CodeSniffer",
641
+
"code quality",
642
+
"codesniffer",
643
+
"composer",
644
+
"installer",
645
+
"phpcbf",
646
+
"phpcs",
647
+
"plugin",
648
+
"qa",
649
+
"quality",
650
+
"standard",
651
+
"standards",
652
+
"style guide",
653
+
"stylecheck",
654
+
"tests"
655
+
],
656
+
"support": {
657
+
"issues": "https://github.com/PHPCSStandards/composer-installer/issues",
658
+
"security": "https://github.com/PHPCSStandards/composer-installer/security/policy",
659
+
"source": "https://github.com/PHPCSStandards/composer-installer"
660
+
},
661
+
"funding": [
662
+
{
663
+
"url": "https://github.com/PHPCSStandards",
664
+
"type": "github"
665
+
},
666
+
{
667
+
"url": "https://github.com/jrfnl",
668
+
"type": "github"
669
+
},
670
+
{
671
+
"url": "https://opencollective.com/php_codesniffer",
672
+
"type": "open_collective"
673
+
},
674
+
{
675
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
676
+
"type": "thanks_dev"
677
+
}
678
+
],
679
+
"time": "2025-11-11T04:32:07+00:00"
680
+
},
681
+
{
682
+
"name": "mediawiki/mediawiki-codesniffer",
683
+
"version": "v48.0.0",
684
+
"source": {
685
+
"type": "git",
686
+
"url": "https://github.com/wikimedia/mediawiki-tools-codesniffer.git",
687
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212"
688
+
},
689
+
"dist": {
690
+
"type": "zip",
691
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-codesniffer/zipball/6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
692
+
"reference": "6d46ca2334d5e1c5be10bf28e01f6010cfbff212",
693
+
"shasum": ""
694
+
},
695
+
"require": {
696
+
"composer/semver": "^3.4.2",
697
+
"composer/spdx-licenses": "~1.5.2",
698
+
"ext-json": "*",
699
+
"ext-mbstring": "*",
700
+
"php": ">=8.1.0",
701
+
"phpcsstandards/phpcsextra": "1.4.0",
702
+
"squizlabs/php_codesniffer": "3.13.2"
703
+
},
704
+
"require-dev": {
705
+
"ext-dom": "*",
706
+
"mediawiki/mediawiki-phan-config": "0.17.0",
707
+
"mediawiki/minus-x": "1.1.3",
708
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
709
+
"php-parallel-lint/php-parallel-lint": "1.4.0",
710
+
"phpunit/phpunit": "9.6.21"
711
+
},
712
+
"type": "phpcodesniffer-standard",
713
+
"autoload": {
714
+
"psr-4": {
715
+
"MediaWiki\\Sniffs\\": "MediaWiki/Sniffs/"
716
+
}
717
+
},
718
+
"notification-url": "https://packagist.org/downloads/",
719
+
"license": [
720
+
"GPL-2.0-or-later"
721
+
],
722
+
"description": "MediaWiki CodeSniffer Standards",
723
+
"homepage": "https://www.mediawiki.org/wiki/Manual:Coding_conventions/PHP",
724
+
"keywords": [
725
+
"codesniffer",
726
+
"mediawiki"
727
+
],
728
+
"support": {
729
+
"source": "https://github.com/wikimedia/mediawiki-tools-codesniffer/tree/v48.0.0"
730
+
},
731
+
"time": "2025-09-04T20:12:57+00:00"
732
+
},
733
+
{
734
+
"name": "mediawiki/minus-x",
735
+
"version": "1.1.3",
736
+
"source": {
737
+
"type": "git",
738
+
"url": "https://github.com/wikimedia/mediawiki-tools-minus-x.git",
739
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd"
740
+
},
741
+
"dist": {
742
+
"type": "zip",
743
+
"url": "https://api.github.com/repos/wikimedia/mediawiki-tools-minus-x/zipball/553f920ad53f78b33ea654f8623c2a50b5ac7efd",
744
+
"reference": "553f920ad53f78b33ea654f8623c2a50b5ac7efd",
745
+
"shasum": ""
746
+
},
747
+
"require": {
748
+
"php": ">=7.2.9",
749
+
"symfony/console": "^3.3.5 || ^4 || ^5 || ^6 || ^7"
750
+
},
751
+
"require-dev": {
752
+
"mediawiki/mediawiki-codesniffer": "43.0.0",
753
+
"php-parallel-lint/php-console-highlighter": "1.0.0",
754
+
"php-parallel-lint/php-parallel-lint": "1.3.2"
755
+
},
756
+
"bin": [
757
+
"bin/minus-x"
758
+
],
759
+
"type": "library",
760
+
"autoload": {
761
+
"psr-4": {
762
+
"MediaWiki\\MinusX\\": "src/"
763
+
}
764
+
},
765
+
"notification-url": "https://packagist.org/downloads/",
766
+
"license": [
767
+
"GPL-3.0-or-later"
768
+
],
769
+
"authors": [
770
+
{
771
+
"name": "Kunal Mehta",
772
+
"email": "legoktm@member.fsf.org"
773
+
}
774
+
],
775
+
"description": "Removes executable bit from files that shouldn't be executable",
776
+
"homepage": "https://www.mediawiki.org/wiki/MinusX",
777
+
"support": {
778
+
"source": "https://github.com/wikimedia/mediawiki-tools-minus-x/tree/1.1.3"
779
+
},
780
+
"time": "2024-05-04T16:06:11+00:00"
781
+
},
782
+
{
783
+
"name": "php-parallel-lint/php-console-color",
784
+
"version": "v1.0.1",
785
+
"source": {
786
+
"type": "git",
787
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Color.git",
788
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88"
789
+
},
790
+
"dist": {
791
+
"type": "zip",
792
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Color/zipball/7adfefd530aa2d7570ba87100a99e2483a543b88",
793
+
"reference": "7adfefd530aa2d7570ba87100a99e2483a543b88",
794
+
"shasum": ""
795
+
},
796
+
"require": {
797
+
"php": ">=5.3.2"
798
+
},
799
+
"replace": {
800
+
"jakub-onderka/php-console-color": "*"
801
+
},
802
+
"require-dev": {
803
+
"php-parallel-lint/php-code-style": "^2.0",
804
+
"php-parallel-lint/php-parallel-lint": "^1.0",
805
+
"php-parallel-lint/php-var-dump-check": "0.*",
806
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
807
+
},
808
+
"type": "library",
809
+
"autoload": {
810
+
"psr-4": {
811
+
"PHP_Parallel_Lint\\PhpConsoleColor\\": "src/"
812
+
}
813
+
},
814
+
"notification-url": "https://packagist.org/downloads/",
815
+
"license": [
816
+
"BSD-2-Clause"
817
+
],
818
+
"authors": [
819
+
{
820
+
"name": "Jakub Onderka",
821
+
"email": "jakub.onderka@gmail.com"
822
+
}
823
+
],
824
+
"description": "Simple library for creating colored console ouput.",
825
+
"support": {
826
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Color/issues",
827
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Color/tree/v1.0.1"
828
+
},
829
+
"time": "2021-12-25T06:49:29+00:00"
830
+
},
831
+
{
832
+
"name": "php-parallel-lint/php-console-highlighter",
833
+
"version": "v1.0.0",
834
+
"source": {
835
+
"type": "git",
836
+
"url": "https://github.com/php-parallel-lint/PHP-Console-Highlighter.git",
837
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d"
838
+
},
839
+
"dist": {
840
+
"type": "zip",
841
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Console-Highlighter/zipball/5b4803384d3303cf8e84141039ef56c8a123138d",
842
+
"reference": "5b4803384d3303cf8e84141039ef56c8a123138d",
843
+
"shasum": ""
844
+
},
845
+
"require": {
846
+
"ext-tokenizer": "*",
847
+
"php": ">=5.3.2",
848
+
"php-parallel-lint/php-console-color": "^1.0.1"
849
+
},
850
+
"replace": {
851
+
"jakub-onderka/php-console-highlighter": "*"
852
+
},
853
+
"require-dev": {
854
+
"php-parallel-lint/php-code-style": "^2.0",
855
+
"php-parallel-lint/php-parallel-lint": "^1.0",
856
+
"php-parallel-lint/php-var-dump-check": "0.*",
857
+
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
858
+
},
859
+
"type": "library",
860
+
"autoload": {
861
+
"psr-4": {
862
+
"PHP_Parallel_Lint\\PhpConsoleHighlighter\\": "src/"
863
+
}
864
+
},
865
+
"notification-url": "https://packagist.org/downloads/",
866
+
"license": [
867
+
"MIT"
868
+
],
869
+
"authors": [
870
+
{
871
+
"name": "Jakub Onderka",
872
+
"email": "acci@acci.cz",
873
+
"homepage": "http://www.acci.cz/"
874
+
}
875
+
],
876
+
"description": "Highlight PHP code in terminal",
877
+
"support": {
878
+
"issues": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/issues",
879
+
"source": "https://github.com/php-parallel-lint/PHP-Console-Highlighter/tree/v1.0.0"
880
+
},
881
+
"time": "2022-02-18T08:23:19+00:00"
882
+
},
883
+
{
884
+
"name": "php-parallel-lint/php-parallel-lint",
885
+
"version": "v1.4.0",
886
+
"source": {
887
+
"type": "git",
888
+
"url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
889
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e"
890
+
},
891
+
"dist": {
892
+
"type": "zip",
893
+
"url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
894
+
"reference": "6db563514f27e19595a19f45a4bf757b6401194e",
895
+
"shasum": ""
896
+
},
897
+
"require": {
898
+
"ext-json": "*",
899
+
"php": ">=5.3.0"
900
+
},
901
+
"replace": {
902
+
"grogy/php-parallel-lint": "*",
903
+
"jakub-onderka/php-parallel-lint": "*"
904
+
},
905
+
"require-dev": {
906
+
"nette/tester": "^1.3 || ^2.0",
907
+
"php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
908
+
"squizlabs/php_codesniffer": "^3.6"
909
+
},
910
+
"suggest": {
911
+
"php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
912
+
},
913
+
"bin": [
914
+
"parallel-lint"
915
+
],
916
+
"type": "library",
917
+
"autoload": {
918
+
"classmap": [
919
+
"./src/"
920
+
]
921
+
},
922
+
"notification-url": "https://packagist.org/downloads/",
923
+
"license": [
924
+
"BSD-2-Clause"
925
+
],
926
+
"authors": [
927
+
{
928
+
"name": "Jakub Onderka",
929
+
"email": "ahoj@jakubonderka.cz"
930
+
}
931
+
],
932
+
"description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
933
+
"homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
934
+
"keywords": [
935
+
"lint",
936
+
"static analysis"
937
+
],
938
+
"support": {
939
+
"issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
940
+
"source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
941
+
},
942
+
"time": "2024-03-27T12:14:49+00:00"
943
+
},
944
+
{
945
+
"name": "phpcsstandards/phpcsextra",
946
+
"version": "1.4.0",
947
+
"source": {
948
+
"type": "git",
949
+
"url": "https://github.com/PHPCSStandards/PHPCSExtra.git",
950
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca"
951
+
},
952
+
"dist": {
953
+
"type": "zip",
954
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSExtra/zipball/fa4b8d051e278072928e32d817456a7fdb57b6ca",
955
+
"reference": "fa4b8d051e278072928e32d817456a7fdb57b6ca",
956
+
"shasum": ""
957
+
},
958
+
"require": {
959
+
"php": ">=5.4",
960
+
"phpcsstandards/phpcsutils": "^1.1.0",
961
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
962
+
},
963
+
"require-dev": {
964
+
"php-parallel-lint/php-console-highlighter": "^1.0",
965
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
966
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
967
+
"phpcsstandards/phpcsdevtools": "^1.2.1",
968
+
"phpunit/phpunit": "^4.5 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
969
+
},
970
+
"type": "phpcodesniffer-standard",
971
+
"extra": {
972
+
"branch-alias": {
973
+
"dev-stable": "1.x-dev",
974
+
"dev-develop": "1.x-dev"
975
+
}
976
+
},
977
+
"notification-url": "https://packagist.org/downloads/",
978
+
"license": [
979
+
"LGPL-3.0-or-later"
980
+
],
981
+
"authors": [
982
+
{
983
+
"name": "Juliette Reinders Folmer",
984
+
"homepage": "https://github.com/jrfnl",
985
+
"role": "lead"
986
+
},
987
+
{
988
+
"name": "Contributors",
989
+
"homepage": "https://github.com/PHPCSStandards/PHPCSExtra/graphs/contributors"
990
+
}
991
+
],
992
+
"description": "A collection of sniffs and standards for use with PHP_CodeSniffer.",
993
+
"keywords": [
994
+
"PHP_CodeSniffer",
995
+
"phpcbf",
996
+
"phpcodesniffer-standard",
997
+
"phpcs",
998
+
"standards",
999
+
"static analysis"
1000
+
],
1001
+
"support": {
1002
+
"issues": "https://github.com/PHPCSStandards/PHPCSExtra/issues",
1003
+
"security": "https://github.com/PHPCSStandards/PHPCSExtra/security/policy",
1004
+
"source": "https://github.com/PHPCSStandards/PHPCSExtra"
1005
+
},
1006
+
"funding": [
1007
+
{
1008
+
"url": "https://github.com/PHPCSStandards",
1009
+
"type": "github"
1010
+
},
1011
+
{
1012
+
"url": "https://github.com/jrfnl",
1013
+
"type": "github"
1014
+
},
1015
+
{
1016
+
"url": "https://opencollective.com/php_codesniffer",
1017
+
"type": "open_collective"
1018
+
},
1019
+
{
1020
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1021
+
"type": "thanks_dev"
1022
+
}
1023
+
],
1024
+
"time": "2025-06-14T07:40:39+00:00"
1025
+
},
1026
+
{
1027
+
"name": "phpcsstandards/phpcsutils",
1028
+
"version": "1.1.1",
1029
+
"source": {
1030
+
"type": "git",
1031
+
"url": "https://github.com/PHPCSStandards/PHPCSUtils.git",
1032
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd"
1033
+
},
1034
+
"dist": {
1035
+
"type": "zip",
1036
+
"url": "https://api.github.com/repos/PHPCSStandards/PHPCSUtils/zipball/f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1037
+
"reference": "f7eb16f2fa4237d5db9e8fed8050239bee17a9bd",
1038
+
"shasum": ""
1039
+
},
1040
+
"require": {
1041
+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.1 || ^0.5 || ^0.6.2 || ^0.7 || ^1.0",
1042
+
"php": ">=5.4",
1043
+
"squizlabs/php_codesniffer": "^3.13.0 || ^4.0"
1044
+
},
1045
+
"require-dev": {
1046
+
"ext-filter": "*",
1047
+
"php-parallel-lint/php-console-highlighter": "^1.0",
1048
+
"php-parallel-lint/php-parallel-lint": "^1.4.0",
1049
+
"phpcsstandards/phpcsdevcs": "^1.1.6",
1050
+
"yoast/phpunit-polyfills": "^1.1.0 || ^2.0.0 || ^3.0.0"
1051
+
},
1052
+
"type": "phpcodesniffer-standard",
1053
+
"extra": {
1054
+
"branch-alias": {
1055
+
"dev-stable": "1.x-dev",
1056
+
"dev-develop": "1.x-dev"
1057
+
}
1058
+
},
1059
+
"autoload": {
1060
+
"classmap": [
1061
+
"PHPCSUtils/"
1062
+
]
1063
+
},
1064
+
"notification-url": "https://packagist.org/downloads/",
1065
+
"license": [
1066
+
"LGPL-3.0-or-later"
1067
+
],
1068
+
"authors": [
1069
+
{
1070
+
"name": "Juliette Reinders Folmer",
1071
+
"homepage": "https://github.com/jrfnl",
1072
+
"role": "lead"
1073
+
},
1074
+
{
1075
+
"name": "Contributors",
1076
+
"homepage": "https://github.com/PHPCSStandards/PHPCSUtils/graphs/contributors"
1077
+
}
1078
+
],
1079
+
"description": "A suite of utility functions for use with PHP_CodeSniffer",
1080
+
"homepage": "https://phpcsutils.com/",
1081
+
"keywords": [
1082
+
"PHP_CodeSniffer",
1083
+
"phpcbf",
1084
+
"phpcodesniffer-standard",
1085
+
"phpcs",
1086
+
"phpcs3",
1087
+
"phpcs4",
1088
+
"standards",
1089
+
"static analysis",
1090
+
"tokens",
1091
+
"utility"
1092
+
],
1093
+
"support": {
1094
+
"docs": "https://phpcsutils.com/",
1095
+
"issues": "https://github.com/PHPCSStandards/PHPCSUtils/issues",
1096
+
"security": "https://github.com/PHPCSStandards/PHPCSUtils/security/policy",
1097
+
"source": "https://github.com/PHPCSStandards/PHPCSUtils"
1098
+
},
1099
+
"funding": [
1100
+
{
1101
+
"url": "https://github.com/PHPCSStandards",
1102
+
"type": "github"
1103
+
},
1104
+
{
1105
+
"url": "https://github.com/jrfnl",
1106
+
"type": "github"
1107
+
},
1108
+
{
1109
+
"url": "https://opencollective.com/php_codesniffer",
1110
+
"type": "open_collective"
1111
+
},
1112
+
{
1113
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1114
+
"type": "thanks_dev"
1115
+
}
1116
+
],
1117
+
"time": "2025-08-10T01:04:45+00:00"
1118
+
},
1119
+
{
1120
+
"name": "psr/container",
1121
+
"version": "2.0.2",
1122
+
"source": {
1123
+
"type": "git",
1124
+
"url": "https://github.com/php-fig/container.git",
1125
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
1126
+
},
1127
+
"dist": {
1128
+
"type": "zip",
1129
+
"url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
1130
+
"reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
1131
+
"shasum": ""
1132
+
},
1133
+
"require": {
1134
+
"php": ">=7.4.0"
1135
+
},
1136
+
"type": "library",
1137
+
"extra": {
1138
+
"branch-alias": {
1139
+
"dev-master": "2.0.x-dev"
1140
+
}
1141
+
},
1142
+
"autoload": {
1143
+
"psr-4": {
1144
+
"Psr\\Container\\": "src/"
1145
+
}
1146
+
},
1147
+
"notification-url": "https://packagist.org/downloads/",
1148
+
"license": [
1149
+
"MIT"
1150
+
],
1151
+
"authors": [
1152
+
{
1153
+
"name": "PHP-FIG",
1154
+
"homepage": "https://www.php-fig.org/"
1155
+
}
1156
+
],
1157
+
"description": "Common Container Interface (PHP FIG PSR-11)",
1158
+
"homepage": "https://github.com/php-fig/container",
1159
+
"keywords": [
1160
+
"PSR-11",
1161
+
"container",
1162
+
"container-interface",
1163
+
"container-interop",
1164
+
"psr"
1165
+
],
1166
+
"support": {
1167
+
"issues": "https://github.com/php-fig/container/issues",
1168
+
"source": "https://github.com/php-fig/container/tree/2.0.2"
1169
+
},
1170
+
"time": "2021-11-05T16:47:00+00:00"
1171
+
},
1172
+
{
1173
+
"name": "squizlabs/php_codesniffer",
1174
+
"version": "3.13.2",
1175
+
"source": {
1176
+
"type": "git",
1177
+
"url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
1178
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c"
1179
+
},
1180
+
"dist": {
1181
+
"type": "zip",
1182
+
"url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/5b5e3821314f947dd040c70f7992a64eac89025c",
1183
+
"reference": "5b5e3821314f947dd040c70f7992a64eac89025c",
1184
+
"shasum": ""
1185
+
},
1186
+
"require": {
1187
+
"ext-simplexml": "*",
1188
+
"ext-tokenizer": "*",
1189
+
"ext-xmlwriter": "*",
1190
+
"php": ">=5.4.0"
1191
+
},
1192
+
"require-dev": {
1193
+
"phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
1194
+
},
1195
+
"bin": [
1196
+
"bin/phpcbf",
1197
+
"bin/phpcs"
1198
+
],
1199
+
"type": "library",
1200
+
"extra": {
1201
+
"branch-alias": {
1202
+
"dev-master": "3.x-dev"
1203
+
}
1204
+
},
1205
+
"notification-url": "https://packagist.org/downloads/",
1206
+
"license": [
1207
+
"BSD-3-Clause"
1208
+
],
1209
+
"authors": [
1210
+
{
1211
+
"name": "Greg Sherwood",
1212
+
"role": "Former lead"
1213
+
},
1214
+
{
1215
+
"name": "Juliette Reinders Folmer",
1216
+
"role": "Current lead"
1217
+
},
1218
+
{
1219
+
"name": "Contributors",
1220
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
1221
+
}
1222
+
],
1223
+
"description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
1224
+
"homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1225
+
"keywords": [
1226
+
"phpcs",
1227
+
"standards",
1228
+
"static analysis"
1229
+
],
1230
+
"support": {
1231
+
"issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
1232
+
"security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
1233
+
"source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
1234
+
"wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
1235
+
},
1236
+
"funding": [
1237
+
{
1238
+
"url": "https://github.com/PHPCSStandards",
1239
+
"type": "github"
1240
+
},
1241
+
{
1242
+
"url": "https://github.com/jrfnl",
1243
+
"type": "github"
1244
+
},
1245
+
{
1246
+
"url": "https://opencollective.com/php_codesniffer",
1247
+
"type": "open_collective"
1248
+
},
1249
+
{
1250
+
"url": "https://thanks.dev/u/gh/phpcsstandards",
1251
+
"type": "thanks_dev"
1252
+
}
1253
+
],
1254
+
"time": "2025-06-17T22:17:01+00:00"
1255
+
},
1256
+
{
1257
+
"name": "symfony/console",
1258
+
"version": "v7.4.1",
1259
+
"source": {
1260
+
"type": "git",
1261
+
"url": "https://github.com/symfony/console.git",
1262
+
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e"
1263
+
},
1264
+
"dist": {
1265
+
"type": "zip",
1266
+
"url": "https://api.github.com/repos/symfony/console/zipball/6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e",
1267
+
"reference": "6d9f0fbf2ec2e9785880096e3abd0ca0c88b506e",
1268
+
"shasum": ""
1269
+
},
1270
+
"require": {
1271
+
"php": ">=8.2",
1272
+
"symfony/deprecation-contracts": "^2.5|^3",
1273
+
"symfony/polyfill-mbstring": "~1.0",
1274
+
"symfony/service-contracts": "^2.5|^3",
1275
+
"symfony/string": "^7.2|^8.0"
1276
+
},
1277
+
"conflict": {
1278
+
"symfony/dependency-injection": "<6.4",
1279
+
"symfony/dotenv": "<6.4",
1280
+
"symfony/event-dispatcher": "<6.4",
1281
+
"symfony/lock": "<6.4",
1282
+
"symfony/process": "<6.4"
1283
+
},
1284
+
"provide": {
1285
+
"psr/log-implementation": "1.0|2.0|3.0"
1286
+
},
1287
+
"require-dev": {
1288
+
"psr/log": "^1|^2|^3",
1289
+
"symfony/config": "^6.4|^7.0|^8.0",
1290
+
"symfony/dependency-injection": "^6.4|^7.0|^8.0",
1291
+
"symfony/event-dispatcher": "^6.4|^7.0|^8.0",
1292
+
"symfony/http-foundation": "^6.4|^7.0|^8.0",
1293
+
"symfony/http-kernel": "^6.4|^7.0|^8.0",
1294
+
"symfony/lock": "^6.4|^7.0|^8.0",
1295
+
"symfony/messenger": "^6.4|^7.0|^8.0",
1296
+
"symfony/process": "^6.4|^7.0|^8.0",
1297
+
"symfony/stopwatch": "^6.4|^7.0|^8.0",
1298
+
"symfony/var-dumper": "^6.4|^7.0|^8.0"
1299
+
},
1300
+
"type": "library",
1301
+
"autoload": {
1302
+
"psr-4": {
1303
+
"Symfony\\Component\\Console\\": ""
1304
+
},
1305
+
"exclude-from-classmap": [
1306
+
"/Tests/"
1307
+
]
1308
+
},
1309
+
"notification-url": "https://packagist.org/downloads/",
1310
+
"license": [
1311
+
"MIT"
1312
+
],
1313
+
"authors": [
1314
+
{
1315
+
"name": "Fabien Potencier",
1316
+
"email": "fabien@symfony.com"
1317
+
},
1318
+
{
1319
+
"name": "Symfony Community",
1320
+
"homepage": "https://symfony.com/contributors"
1321
+
}
1322
+
],
1323
+
"description": "Eases the creation of beautiful and testable command line interfaces",
1324
+
"homepage": "https://symfony.com",
1325
+
"keywords": [
1326
+
"cli",
1327
+
"command-line",
1328
+
"console",
1329
+
"terminal"
1330
+
],
1331
+
"support": {
1332
+
"source": "https://github.com/symfony/console/tree/v7.4.1"
1333
+
},
1334
+
"funding": [
1335
+
{
1336
+
"url": "https://symfony.com/sponsor",
1337
+
"type": "custom"
1338
+
},
1339
+
{
1340
+
"url": "https://github.com/fabpot",
1341
+
"type": "github"
1342
+
},
1343
+
{
1344
+
"url": "https://github.com/nicolas-grekas",
1345
+
"type": "github"
1346
+
},
1347
+
{
1348
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1349
+
"type": "tidelift"
1350
+
}
1351
+
],
1352
+
"time": "2025-12-05T15:23:39+00:00"
1353
+
},
1354
+
{
1355
+
"name": "symfony/deprecation-contracts",
1356
+
"version": "v3.6.0",
1357
+
"source": {
1358
+
"type": "git",
1359
+
"url": "https://github.com/symfony/deprecation-contracts.git",
1360
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
1361
+
},
1362
+
"dist": {
1363
+
"type": "zip",
1364
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
1365
+
"reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
1366
+
"shasum": ""
1367
+
},
1368
+
"require": {
1369
+
"php": ">=8.1"
1370
+
},
1371
+
"type": "library",
1372
+
"extra": {
1373
+
"thanks": {
1374
+
"url": "https://github.com/symfony/contracts",
1375
+
"name": "symfony/contracts"
1376
+
},
1377
+
"branch-alias": {
1378
+
"dev-main": "3.6-dev"
1379
+
}
1380
+
},
1381
+
"autoload": {
1382
+
"files": [
1383
+
"function.php"
1384
+
]
1385
+
},
1386
+
"notification-url": "https://packagist.org/downloads/",
1387
+
"license": [
1388
+
"MIT"
1389
+
],
1390
+
"authors": [
1391
+
{
1392
+
"name": "Nicolas Grekas",
1393
+
"email": "p@tchwork.com"
1394
+
},
1395
+
{
1396
+
"name": "Symfony Community",
1397
+
"homepage": "https://symfony.com/contributors"
1398
+
}
1399
+
],
1400
+
"description": "A generic function and convention to trigger deprecation notices",
1401
+
"homepage": "https://symfony.com",
1402
+
"support": {
1403
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
1404
+
},
1405
+
"funding": [
1406
+
{
1407
+
"url": "https://symfony.com/sponsor",
1408
+
"type": "custom"
1409
+
},
1410
+
{
1411
+
"url": "https://github.com/fabpot",
1412
+
"type": "github"
1413
+
},
1414
+
{
1415
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1416
+
"type": "tidelift"
1417
+
}
1418
+
],
1419
+
"time": "2024-09-25T14:21:43+00:00"
1420
+
},
1421
+
{
1422
+
"name": "symfony/polyfill-ctype",
1423
+
"version": "v1.33.0",
1424
+
"source": {
1425
+
"type": "git",
1426
+
"url": "https://github.com/symfony/polyfill-ctype.git",
1427
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
1428
+
},
1429
+
"dist": {
1430
+
"type": "zip",
1431
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
1432
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
1433
+
"shasum": ""
1434
+
},
1435
+
"require": {
1436
+
"php": ">=7.2"
1437
+
},
1438
+
"provide": {
1439
+
"ext-ctype": "*"
1440
+
},
1441
+
"suggest": {
1442
+
"ext-ctype": "For best performance"
1443
+
},
1444
+
"type": "library",
1445
+
"extra": {
1446
+
"thanks": {
1447
+
"url": "https://github.com/symfony/polyfill",
1448
+
"name": "symfony/polyfill"
1449
+
}
1450
+
},
1451
+
"autoload": {
1452
+
"files": [
1453
+
"bootstrap.php"
1454
+
],
1455
+
"psr-4": {
1456
+
"Symfony\\Polyfill\\Ctype\\": ""
1457
+
}
1458
+
},
1459
+
"notification-url": "https://packagist.org/downloads/",
1460
+
"license": [
1461
+
"MIT"
1462
+
],
1463
+
"authors": [
1464
+
{
1465
+
"name": "Gert de Pagter",
1466
+
"email": "BackEndTea@gmail.com"
1467
+
},
1468
+
{
1469
+
"name": "Symfony Community",
1470
+
"homepage": "https://symfony.com/contributors"
1471
+
}
1472
+
],
1473
+
"description": "Symfony polyfill for ctype functions",
1474
+
"homepage": "https://symfony.com",
1475
+
"keywords": [
1476
+
"compatibility",
1477
+
"ctype",
1478
+
"polyfill",
1479
+
"portable"
1480
+
],
1481
+
"support": {
1482
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
1483
+
},
1484
+
"funding": [
1485
+
{
1486
+
"url": "https://symfony.com/sponsor",
1487
+
"type": "custom"
1488
+
},
1489
+
{
1490
+
"url": "https://github.com/fabpot",
1491
+
"type": "github"
1492
+
},
1493
+
{
1494
+
"url": "https://github.com/nicolas-grekas",
1495
+
"type": "github"
1496
+
},
1497
+
{
1498
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1499
+
"type": "tidelift"
1500
+
}
1501
+
],
1502
+
"time": "2024-09-09T11:45:10+00:00"
1503
+
},
1504
+
{
1505
+
"name": "symfony/polyfill-intl-grapheme",
1506
+
"version": "v1.33.0",
1507
+
"source": {
1508
+
"type": "git",
1509
+
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
1510
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
1511
+
},
1512
+
"dist": {
1513
+
"type": "zip",
1514
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
1515
+
"reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
1516
+
"shasum": ""
1517
+
},
1518
+
"require": {
1519
+
"php": ">=7.2"
1520
+
},
1521
+
"suggest": {
1522
+
"ext-intl": "For best performance"
1523
+
},
1524
+
"type": "library",
1525
+
"extra": {
1526
+
"thanks": {
1527
+
"url": "https://github.com/symfony/polyfill",
1528
+
"name": "symfony/polyfill"
1529
+
}
1530
+
},
1531
+
"autoload": {
1532
+
"files": [
1533
+
"bootstrap.php"
1534
+
],
1535
+
"psr-4": {
1536
+
"Symfony\\Polyfill\\Intl\\Grapheme\\": ""
1537
+
}
1538
+
},
1539
+
"notification-url": "https://packagist.org/downloads/",
1540
+
"license": [
1541
+
"MIT"
1542
+
],
1543
+
"authors": [
1544
+
{
1545
+
"name": "Nicolas Grekas",
1546
+
"email": "p@tchwork.com"
1547
+
},
1548
+
{
1549
+
"name": "Symfony Community",
1550
+
"homepage": "https://symfony.com/contributors"
1551
+
}
1552
+
],
1553
+
"description": "Symfony polyfill for intl's grapheme_* functions",
1554
+
"homepage": "https://symfony.com",
1555
+
"keywords": [
1556
+
"compatibility",
1557
+
"grapheme",
1558
+
"intl",
1559
+
"polyfill",
1560
+
"portable",
1561
+
"shim"
1562
+
],
1563
+
"support": {
1564
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
1565
+
},
1566
+
"funding": [
1567
+
{
1568
+
"url": "https://symfony.com/sponsor",
1569
+
"type": "custom"
1570
+
},
1571
+
{
1572
+
"url": "https://github.com/fabpot",
1573
+
"type": "github"
1574
+
},
1575
+
{
1576
+
"url": "https://github.com/nicolas-grekas",
1577
+
"type": "github"
1578
+
},
1579
+
{
1580
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1581
+
"type": "tidelift"
1582
+
}
1583
+
],
1584
+
"time": "2025-06-27T09:58:17+00:00"
1585
+
},
1586
+
{
1587
+
"name": "symfony/polyfill-intl-normalizer",
1588
+
"version": "v1.33.0",
1589
+
"source": {
1590
+
"type": "git",
1591
+
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
1592
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c"
1593
+
},
1594
+
"dist": {
1595
+
"type": "zip",
1596
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
1597
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c",
1598
+
"shasum": ""
1599
+
},
1600
+
"require": {
1601
+
"php": ">=7.2"
1602
+
},
1603
+
"suggest": {
1604
+
"ext-intl": "For best performance"
1605
+
},
1606
+
"type": "library",
1607
+
"extra": {
1608
+
"thanks": {
1609
+
"url": "https://github.com/symfony/polyfill",
1610
+
"name": "symfony/polyfill"
1611
+
}
1612
+
},
1613
+
"autoload": {
1614
+
"files": [
1615
+
"bootstrap.php"
1616
+
],
1617
+
"psr-4": {
1618
+
"Symfony\\Polyfill\\Intl\\Normalizer\\": ""
1619
+
},
1620
+
"classmap": [
1621
+
"Resources/stubs"
1622
+
]
1623
+
},
1624
+
"notification-url": "https://packagist.org/downloads/",
1625
+
"license": [
1626
+
"MIT"
1627
+
],
1628
+
"authors": [
1629
+
{
1630
+
"name": "Nicolas Grekas",
1631
+
"email": "p@tchwork.com"
1632
+
},
1633
+
{
1634
+
"name": "Symfony Community",
1635
+
"homepage": "https://symfony.com/contributors"
1636
+
}
1637
+
],
1638
+
"description": "Symfony polyfill for intl's Normalizer class and related functions",
1639
+
"homepage": "https://symfony.com",
1640
+
"keywords": [
1641
+
"compatibility",
1642
+
"intl",
1643
+
"normalizer",
1644
+
"polyfill",
1645
+
"portable",
1646
+
"shim"
1647
+
],
1648
+
"support": {
1649
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
1650
+
},
1651
+
"funding": [
1652
+
{
1653
+
"url": "https://symfony.com/sponsor",
1654
+
"type": "custom"
1655
+
},
1656
+
{
1657
+
"url": "https://github.com/fabpot",
1658
+
"type": "github"
1659
+
},
1660
+
{
1661
+
"url": "https://github.com/nicolas-grekas",
1662
+
"type": "github"
1663
+
},
1664
+
{
1665
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1666
+
"type": "tidelift"
1667
+
}
1668
+
],
1669
+
"time": "2024-09-09T11:45:10+00:00"
1670
+
},
1671
+
{
1672
+
"name": "symfony/polyfill-mbstring",
1673
+
"version": "v1.33.0",
1674
+
"source": {
1675
+
"type": "git",
1676
+
"url": "https://github.com/symfony/polyfill-mbstring.git",
1677
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
1678
+
},
1679
+
"dist": {
1680
+
"type": "zip",
1681
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
1682
+
"reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
1683
+
"shasum": ""
1684
+
},
1685
+
"require": {
1686
+
"ext-iconv": "*",
1687
+
"php": ">=7.2"
1688
+
},
1689
+
"provide": {
1690
+
"ext-mbstring": "*"
1691
+
},
1692
+
"suggest": {
1693
+
"ext-mbstring": "For best performance"
1694
+
},
1695
+
"type": "library",
1696
+
"extra": {
1697
+
"thanks": {
1698
+
"url": "https://github.com/symfony/polyfill",
1699
+
"name": "symfony/polyfill"
1700
+
}
1701
+
},
1702
+
"autoload": {
1703
+
"files": [
1704
+
"bootstrap.php"
1705
+
],
1706
+
"psr-4": {
1707
+
"Symfony\\Polyfill\\Mbstring\\": ""
1708
+
}
1709
+
},
1710
+
"notification-url": "https://packagist.org/downloads/",
1711
+
"license": [
1712
+
"MIT"
1713
+
],
1714
+
"authors": [
1715
+
{
1716
+
"name": "Nicolas Grekas",
1717
+
"email": "p@tchwork.com"
1718
+
},
1719
+
{
1720
+
"name": "Symfony Community",
1721
+
"homepage": "https://symfony.com/contributors"
1722
+
}
1723
+
],
1724
+
"description": "Symfony polyfill for the Mbstring extension",
1725
+
"homepage": "https://symfony.com",
1726
+
"keywords": [
1727
+
"compatibility",
1728
+
"mbstring",
1729
+
"polyfill",
1730
+
"portable",
1731
+
"shim"
1732
+
],
1733
+
"support": {
1734
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
1735
+
},
1736
+
"funding": [
1737
+
{
1738
+
"url": "https://symfony.com/sponsor",
1739
+
"type": "custom"
1740
+
},
1741
+
{
1742
+
"url": "https://github.com/fabpot",
1743
+
"type": "github"
1744
+
},
1745
+
{
1746
+
"url": "https://github.com/nicolas-grekas",
1747
+
"type": "github"
1748
+
},
1749
+
{
1750
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1751
+
"type": "tidelift"
1752
+
}
1753
+
],
1754
+
"time": "2024-12-23T08:48:59+00:00"
1755
+
},
1756
+
{
1757
+
"name": "symfony/service-contracts",
1758
+
"version": "v3.6.1",
1759
+
"source": {
1760
+
"type": "git",
1761
+
"url": "https://github.com/symfony/service-contracts.git",
1762
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
1763
+
},
1764
+
"dist": {
1765
+
"type": "zip",
1766
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
1767
+
"reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
1768
+
"shasum": ""
1769
+
},
1770
+
"require": {
1771
+
"php": ">=8.1",
1772
+
"psr/container": "^1.1|^2.0",
1773
+
"symfony/deprecation-contracts": "^2.5|^3"
1774
+
},
1775
+
"conflict": {
1776
+
"ext-psr": "<1.1|>=2"
1777
+
},
1778
+
"type": "library",
1779
+
"extra": {
1780
+
"thanks": {
1781
+
"url": "https://github.com/symfony/contracts",
1782
+
"name": "symfony/contracts"
1783
+
},
1784
+
"branch-alias": {
1785
+
"dev-main": "3.6-dev"
1786
+
}
1787
+
},
1788
+
"autoload": {
1789
+
"psr-4": {
1790
+
"Symfony\\Contracts\\Service\\": ""
1791
+
},
1792
+
"exclude-from-classmap": [
1793
+
"/Test/"
1794
+
]
1795
+
},
1796
+
"notification-url": "https://packagist.org/downloads/",
1797
+
"license": [
1798
+
"MIT"
1799
+
],
1800
+
"authors": [
1801
+
{
1802
+
"name": "Nicolas Grekas",
1803
+
"email": "p@tchwork.com"
1804
+
},
1805
+
{
1806
+
"name": "Symfony Community",
1807
+
"homepage": "https://symfony.com/contributors"
1808
+
}
1809
+
],
1810
+
"description": "Generic abstractions related to writing services",
1811
+
"homepage": "https://symfony.com",
1812
+
"keywords": [
1813
+
"abstractions",
1814
+
"contracts",
1815
+
"decoupling",
1816
+
"interfaces",
1817
+
"interoperability",
1818
+
"standards"
1819
+
],
1820
+
"support": {
1821
+
"source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
1822
+
},
1823
+
"funding": [
1824
+
{
1825
+
"url": "https://symfony.com/sponsor",
1826
+
"type": "custom"
1827
+
},
1828
+
{
1829
+
"url": "https://github.com/fabpot",
1830
+
"type": "github"
1831
+
},
1832
+
{
1833
+
"url": "https://github.com/nicolas-grekas",
1834
+
"type": "github"
1835
+
},
1836
+
{
1837
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1838
+
"type": "tidelift"
1839
+
}
1840
+
],
1841
+
"time": "2025-07-15T11:30:57+00:00"
1842
+
},
1843
+
{
1844
+
"name": "symfony/string",
1845
+
"version": "v8.0.1",
1846
+
"source": {
1847
+
"type": "git",
1848
+
"url": "https://github.com/symfony/string.git",
1849
+
"reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc"
1850
+
},
1851
+
"dist": {
1852
+
"type": "zip",
1853
+
"url": "https://api.github.com/repos/symfony/string/zipball/ba65a969ac918ce0cc3edfac6cdde847eba231dc",
1854
+
"reference": "ba65a969ac918ce0cc3edfac6cdde847eba231dc",
1855
+
"shasum": ""
1856
+
},
1857
+
"require": {
1858
+
"php": ">=8.4",
1859
+
"symfony/polyfill-ctype": "^1.8",
1860
+
"symfony/polyfill-intl-grapheme": "^1.33",
1861
+
"symfony/polyfill-intl-normalizer": "^1.0",
1862
+
"symfony/polyfill-mbstring": "^1.0"
1863
+
},
1864
+
"conflict": {
1865
+
"symfony/translation-contracts": "<2.5"
1866
+
},
1867
+
"require-dev": {
1868
+
"symfony/emoji": "^7.4|^8.0",
1869
+
"symfony/http-client": "^7.4|^8.0",
1870
+
"symfony/intl": "^7.4|^8.0",
1871
+
"symfony/translation-contracts": "^2.5|^3.0",
1872
+
"symfony/var-exporter": "^7.4|^8.0"
1873
+
},
1874
+
"type": "library",
1875
+
"autoload": {
1876
+
"files": [
1877
+
"Resources/functions.php"
1878
+
],
1879
+
"psr-4": {
1880
+
"Symfony\\Component\\String\\": ""
1881
+
},
1882
+
"exclude-from-classmap": [
1883
+
"/Tests/"
1884
+
]
1885
+
},
1886
+
"notification-url": "https://packagist.org/downloads/",
1887
+
"license": [
1888
+
"MIT"
1889
+
],
1890
+
"authors": [
1891
+
{
1892
+
"name": "Nicolas Grekas",
1893
+
"email": "p@tchwork.com"
1894
+
},
1895
+
{
1896
+
"name": "Symfony Community",
1897
+
"homepage": "https://symfony.com/contributors"
1898
+
}
1899
+
],
1900
+
"description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
1901
+
"homepage": "https://symfony.com",
1902
+
"keywords": [
1903
+
"grapheme",
1904
+
"i18n",
1905
+
"string",
1906
+
"unicode",
1907
+
"utf-8",
1908
+
"utf8"
1909
+
],
1910
+
"support": {
1911
+
"source": "https://github.com/symfony/string/tree/v8.0.1"
1912
+
},
1913
+
"funding": [
1914
+
{
1915
+
"url": "https://symfony.com/sponsor",
1916
+
"type": "custom"
1917
+
},
1918
+
{
1919
+
"url": "https://github.com/fabpot",
1920
+
"type": "github"
1921
+
},
1922
+
{
1923
+
"url": "https://github.com/nicolas-grekas",
1924
+
"type": "github"
1925
+
},
1926
+
{
1927
+
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
1928
+
"type": "tidelift"
1929
+
}
1930
+
],
1931
+
"time": "2025-12-01T09:13:36+00:00"
1932
+
}
1933
+
],
1934
+
"aliases": [],
1935
+
"minimum-stability": "stable",
1936
+
"stability-flags": {},
1937
+
"prefer-stable": false,
1938
+
"prefer-lowest": false,
1939
+
"platform": {},
1940
+
"platform-dev": {},
1941
+
"plugin-api-version": "2.6.0"
1942
+
}
+3
packetmix/systems/wiki/wiki/OpenIDConnect.composer.lock.license
+3
packetmix/systems/wiki/wiki/OpenIDConnect.composer.lock.license
+444
packetmix/systems/wiki/wiki.nix
+444
packetmix/systems/wiki/wiki.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
# SPDX-FileCopyrightText: 2026 Collabora Productivity Limited
3
+
#
4
+
# SPDX-License-Identifier: MIT
5
+
6
+
# This ingredient has some default values (including OIDC config/etc.) that make it probably unsuitable for use outside of Freshly Baked. Sorry.
7
+
{
8
+
project,
9
+
system,
10
+
config,
11
+
pkgs,
12
+
lib,
13
+
...
14
+
}:
15
+
{
16
+
options.ingredient.wiki.wiki = {
17
+
name = lib.mkOption {
18
+
type = lib.types.str;
19
+
description = "What should your wiki be called";
20
+
default = "Freshly Wiki";
21
+
};
22
+
hostname = lib.mkOption {
23
+
type = lib.types.str;
24
+
description = "Where your wiki should be hosted";
25
+
};
26
+
email = lib.mkOption {
27
+
type = lib.types.str;
28
+
description = "What email should notifications/password resets/etc. come from";
29
+
};
30
+
enablePublicInternet = lib.mkEnableOption "Allow access from the public internet with authentication via OIDC";
31
+
enableAutoRegistration = lib.mkEnableOption "Allow unregistered users to automatically register via OIDC or Tailscale";
32
+
favicon = lib.mkOption {
33
+
type = lib.types.path;
34
+
description = "What's your favicon.ico (.ico)";
35
+
};
36
+
icon = lib.mkOption {
37
+
type = lib.types.path;
38
+
description = "What icon do you want to display on the top left of pages (.svg)";
39
+
};
40
+
};
41
+
42
+
config = {
43
+
clicks.storage.impermanence.persist.directories = [
44
+
{
45
+
directory = "/var/lib/mediawiki";
46
+
mode = "0700";
47
+
user = "mediawiki";
48
+
defaultPerms.mode = "0700";
49
+
}
50
+
{
51
+
directory = "/var/lib/private/opensearch";
52
+
mode = "0700";
53
+
user = "opensearch";
54
+
defaultPerms.mode = "0700";
55
+
}
56
+
];
57
+
58
+
services.mediawiki = {
59
+
enable = true;
60
+
package = project.inputs.nixos-unstable.result.${system}.mediawiki; # header auth master requires mediawiki unstable - header auth stable is broken on missing Hooks (recently removed in stable MW version)
61
+
phpPackage = pkgs.php83.withExtensions ({ enabled, all }: enabled ++ [ all.luasandbox ]);
62
+
database.type = "postgres";
63
+
path = [
64
+
pkgs.diffutils
65
+
pkgs.imagemagick
66
+
pkgs.python3Packages.pygments
67
+
];
68
+
extensions = {
69
+
AdvancedSearch = project.inputs.AdvancedSearch.src;
70
+
Auth_remoteuser = project.inputs.Auth_remoteuser.src; # header auth
71
+
AutoCreateCategoryPages = project.inputs.AutoCreateCategoryPages.src;
72
+
Cargo = project.inputs.Cargo.src; # queries and soforth
73
+
CategoryTree = null;
74
+
CheckUser = null;
75
+
Cite = null;
76
+
CiteThisPage = null;
77
+
CirrusSearch = "${
78
+
pkgs.php.buildComposerProject {
79
+
pname = "CirrusSearch";
80
+
version = "0.0.3665";
81
+
src = project.inputs.CirrusSearch.src;
82
+
vendorHash = "sha256-MLD/3hvzX1aqR4knajJ1amb6K5SVtxlfy+UZWoSi1Bk=";
83
+
composerLock = ./wiki/CirrusSearch.composer.lock;
84
+
}
85
+
}/share/php/CirrusSearch"; # needed for advancedsearch
86
+
CodeEditor = null;
87
+
DiscussionTools = null;
88
+
Echo = null;
89
+
EditNotify = project.inputs.EditNotify.src;
90
+
Elastica = "${
91
+
pkgs.php.buildComposerProject {
92
+
pname = "Elastica";
93
+
version = "0.0.3665";
94
+
src = project.inputs.Elastica.src;
95
+
vendorHash = "sha256-4kp8njLTqPeFCREnGharCB/pmYBnXLJR4TdD6EH6WCI=";
96
+
composerLock = ./wiki/Elastica.composer.lock;
97
+
}
98
+
}/share/php/Elastica"; # needed for cirrussearch
99
+
Linter = null;
100
+
Math = null;
101
+
MobileFrontend = project.inputs.MobileFrontend.src;
102
+
NamespacePreload = project.inputs.NamespacePreload.src;
103
+
Network = "${
104
+
config.services.phpfpm.pools.mediawiki.phpPackage.buildComposerProject {
105
+
pname = "Network";
106
+
version = "0.0.3665";
107
+
src = project.inputs.Network.src;
108
+
vendorHash = "sha256-JHa6PW5xO3pcwn/2jbGXM0wGhr6UmtqFdxaGCgpaYb0=";
109
+
composerLock = ./wiki/Network.composer.lock;
110
+
}
111
+
}/share/php/Network"; # for page connection graphs
112
+
OpenIDConnect = lib.mkIf config.ingredient.wiki.wiki.enablePublicInternet "${
113
+
pkgs.php.buildComposerProject {
114
+
pname = "OpenIDConnect";
115
+
version = "0.0.3665";
116
+
src = project.inputs.OpenIDConnect.src;
117
+
vendorHash = "sha256-DjxyOK21tbBEj6hFfhVNDxeNu4a26hvMRHgD/u24ZT0=";
118
+
composerLock = ./wiki/OpenIDConnect.composer.lock;
119
+
120
+
postInstall = ''
121
+
cat sql/postgres/ChangePrimaryKey.sql | sed 's/DROP INDEX "primary"/ALTER TABLE openid_connect DROP CONSTRAINT openid_connect_pkey/' > $out/share/php/OpenIDConnect/sql/postgres/ChangePrimaryKey.sql
122
+
'';
123
+
}
124
+
}/share/php/OpenIDConnect";
125
+
ParserFunctions = null;
126
+
PluggableAuth = lib.mkIf config.ingredient.wiki.wiki.enablePublicInternet project.inputs.PluggableAuth.src; # needed for OIDC
127
+
Poem = null;
128
+
ReplaceText = null;
129
+
Scribunto = null;
130
+
SecureLinkFixer = null;
131
+
SimpleTooltip = project.inputs.SimpleTooltip.src;
132
+
SyntaxHighlight_GeSHi = null;
133
+
TemplateData = null;
134
+
TemplateStyles = null;
135
+
Thanks = null;
136
+
UserMerge = project.inputs.UserMerge.src;
137
+
VisualEditor = null;
138
+
WikiEditor = null;
139
+
};
140
+
extraConfig = ''
141
+
$wgMaxUploadSize = 1024*1024*1024*8;
142
+
$wgGroupPermissions['autoconfirmed']['upload_by_url'] = true;
143
+
$wgGroupPermissions['autoconfirmed']['interwiki'] = true; // Special:Interwiki - edit shortlink prefixes, crazy-strong permission but we trust our friends
144
+
$wgAllowCopyUploads = true;
145
+
$wgCopyUploadsFromSpecialUpload = true;
146
+
147
+
$wgSMTP = [
148
+
'host' => 'ssl://mail.freshly.space',
149
+
'IDHost' => '${config.ingredient.wiki.wiki.hostname}',
150
+
'localhost' => '${config.ingredient.wiki.wiki.hostname}',
151
+
'port' => 465,
152
+
'auth' => true,
153
+
'username' => 'automated@freshly.space',
154
+
'password' => trim(file_get_contents('/secrets/mediawiki/mail_password.txt'))
155
+
];
156
+
157
+
$wgWhitelistReadRegexp = [
158
+
'/^Main Page$/',
159
+
'/^Public:/',
160
+
'/^User:/'
161
+
];
162
+
$wgGroupPermissions['*']['read'] = false;
163
+
$wgGroupPermissions['*']['edit'] = false;
164
+
$wgGroupPermissions['*']['createaccount'] = false;
165
+
$wgGroupPermissions['*']['autocreateaccount'] = ${
166
+
if config.ingredient.wiki.wiki.enableAutoRegistration then "true" else "false"
167
+
};
168
+
169
+
$wgGroupPermissions['bureaucrat']['usermerge'] = true;
170
+
171
+
$wgAuthRemoteuserUserName = function () {
172
+
if (!isset($_SERVER['HTTP_X_FROM_TAILSCALE'])) {
173
+
return "";
174
+
}
175
+
176
+
if (!isset($_SERVER['HTTP_X_WEBAUTH_LOGIN'])) {
177
+
return "Server";
178
+
}
179
+
180
+
if ($_SERVER['HTTP_X_WEBAUTH_LOGIN'] === 'hyperneutrino') {
181
+
return 'HyperNeutrino';
182
+
}
183
+
184
+
return $_SERVER['HTTP_X_WEBAUTH_LOGIN'];
185
+
};
186
+
$wgAuthRemoteuserPriority = MediaWiki\Session\SessionInfo::MAX_PRIORITY;
187
+
188
+
$wgUseCdn = true;
189
+
$wgCdnServersNoPurge = [
190
+
'127.0.0.1'
191
+
];
192
+
$wgUsePrivateIPs = true;
193
+
194
+
$wgUseInstantCommons = true;
195
+
$wgPingback = false;
196
+
197
+
${
198
+
if config.ingredient.wiki.wiki.enablePublicInternet then
199
+
''
200
+
$wgPluggableAuth_Config = [
201
+
'Freshly Baked Cake Kanidm' => [
202
+
'plugin' => 'OpenIDConnect',
203
+
'data' => [
204
+
'providerURL' => 'https://idm.freshly.space/oauth2/openid/mediawiki',
205
+
'clientID' => 'mediawiki',
206
+
'clientsecret' => trim(file_get_contents('/secrets/mediawiki/oidc_client_secret.txt')),
207
+
'codeChallengeMethod' => 'S256'
208
+
]
209
+
]
210
+
];
211
+
''
212
+
else
213
+
""
214
+
}
215
+
216
+
$wgOpenIDConnect_MigrateUsersByUserName = true;
217
+
218
+
$wgLogos = [
219
+
'icon' => '/icon.svg',
220
+
'svg' => '/icon.svg'
221
+
];
222
+
223
+
$wgPygmentizePath = '${pkgs.python3Packages.pygments}/bin/pygmentize';
224
+
225
+
$wgScribuntoDefaultEngine = 'luasandbox';
226
+
227
+
define("NS_PUBLIC", 3000);
228
+
define("NS_PUBLIC_TALK", 3001);
229
+
230
+
// Add namespaces.
231
+
$wgExtraNamespaces[NS_PUBLIC] = "Public";
232
+
$wgExtraNamespaces[NS_PUBLIC_TALK] = "Public_talk";
233
+
234
+
$wgNamespacesWithSubpages[NS_MAIN] = true;
235
+
$wgNamespacesWithSubpages[NS_PUBLIC] = true;
236
+
237
+
$wgNamespacePreloadDoExpansion = false; // This can't expand {{PAGENAME}} (or like) correctly, making it very nearly useless
238
+
239
+
$wgCirrusSearchServers = [
240
+
[
241
+
"host" => '127.0.0.1',
242
+
"port" => 1037
243
+
]
244
+
];
245
+
$wgSearchType = 'CirrusSearch';
246
+
$wgNamespacesToBeSearchedDefault[NS_CATEGORY] = true;
247
+
$wgNamespacesToBeSearchedDefault[NS_PUBLIC] = true;
248
+
249
+
$wgUrlProtocols[] = "rad:";
250
+
251
+
$wgSVGNativeRendering = true;
252
+
253
+
$wgRCWatchCategoryMembership = true;
254
+
255
+
$wgCargoPageDataColumns[] = 'creationDate';
256
+
$wgCargoPageDataColumns[] = 'modificationDate';
257
+
$wgCargoPageDataColumns[] = 'creator';
258
+
$wgCargoPageDataColumns[] = 'lastEditor';
259
+
$wgCargoPageDataColumns[] = 'displayTitle';
260
+
// $wgCargoPageDataColumns[] = 'categories'; - seems to break with auto-categorization(?), causes job queue to abandon and drop refresh link tasks
261
+
$wgCargoPageDataColumns[] = 'numRevisions';
262
+
$wgCargoPageDataColumns[] = 'outgoingLinks';
263
+
$wgCargoPageDataColumns[] = 'isRedirect';
264
+
$wgCargoPageDataColumns[] = 'pageNameOrRedirect';
265
+
$wgCargoPageDataColumns[] = 'pageIDOrRedirect';
266
+
267
+
$wgCargoFileDataColumns[] = 'mediaType';
268
+
$wgCargoFileDataColumns[] = 'path';
269
+
$wgCargoFileDataColumns[] = 'lastUploadDate';
270
+
271
+
$wgFixDoubleRedirects = true;
272
+
273
+
$wgMFAutodetectMobileView = true;
274
+
$wgMFEnableMobilePreferences = true;
275
+
wfLoadSkin( 'MinervaNeue' );
276
+
277
+
$wgEnableScaryTranscluding = true;
278
+
279
+
$wgEnableEditRecovery = true;
280
+
281
+
$wgExternalLinkTarget = '_blank';
282
+
283
+
$wgShowExceptionDetails = true;
284
+
$wgDevelopmentWarnings = true;
285
+
'';
286
+
webserver = "nginx";
287
+
url = "https://${config.ingredient.wiki.wiki.hostname}";
288
+
nginx.hostName = config.ingredient.wiki.wiki.hostname;
289
+
inherit (config.ingredient.wiki.wiki) name;
290
+
database = {
291
+
passwordFile = builtins.toFile "unused-mediawiki-postgress-password" "userpass"; # This isn't actually needed for running a wiki, but some of the initialization scripts do require it. It's not a real password.
292
+
createLocally = false; # We can't use createLocally with passwordFile, which is needed during initialization... we'll ensure the database ourself below :(
293
+
294
+
socket = "/run/postgresql";
295
+
};
296
+
297
+
passwordSender = config.ingredient.wiki.wiki.email;
298
+
299
+
passwordFile = "/secrets/mediawiki/initial_admin_password.txt";
300
+
};
301
+
302
+
services.postgresql = {
303
+
enable = true;
304
+
ensureDatabases = [ config.services.mediawiki.database.name ];
305
+
ensureUsers = [
306
+
{
307
+
name = config.services.mediawiki.database.user;
308
+
ensureDBOwnership = true;
309
+
}
310
+
];
311
+
};
312
+
systemd.services.mediawiki-init.after = [ "postgresql.target" ];
313
+
systemd.services.httpd.after = [ "postgresql.target" ];
314
+
315
+
systemd.timers.mediawiki-maintenance = {
316
+
wantedBy = [ "timers.target" ];
317
+
timerConfig = {
318
+
OnUnitActiveSec = "30";
319
+
OnBootSec = "30";
320
+
Persistent = false;
321
+
Unit = "mediawiki-maintenance.service";
322
+
};
323
+
};
324
+
325
+
systemd.services.mediawiki-maintenance = {
326
+
script = ''
327
+
${config.services.phpfpm.pools.mediawiki.phpPackage}/bin/php ${config.services.mediawiki.finalPackage}/share/mediawiki/maintenance/run.php runJobs --memory-limit 1G --maxtime 30
328
+
'';
329
+
serviceConfig = {
330
+
Type = "oneshot";
331
+
RemainAfterExit = false;
332
+
User = "mediawiki";
333
+
Group = "nginx";
334
+
PrivateTmp = true;
335
+
Environment = "MEDIAWIKI_CONFIG=${config.services.phpfpm.pools.mediawiki.phpEnv.MEDIAWIKI_CONFIG}";
336
+
};
337
+
};
338
+
339
+
services.opensearch = {
340
+
# needed for cirrussearch
341
+
enable = true;
342
+
package = project.packages.opensearch.result.${system};
343
+
settings = {
344
+
"http.port" = 1037;
345
+
"path.data" = "/var/lib/private/opensearch/data";
346
+
"path.logs" = "/var/lib/private/opensearch/logs";
347
+
};
348
+
};
349
+
350
+
services.nginx.enable = true;
351
+
services.nginx.virtualHosts.${config.ingredient.wiki.wiki.hostname} = {
352
+
listen = [
353
+
{
354
+
addr = "127.0.0.1";
355
+
port = 1036;
356
+
}
357
+
];
358
+
359
+
locations = {
360
+
"= /" = lib.mkForce {
361
+
extraConfig = ''
362
+
return 301 https://${config.ingredient.wiki.wiki.hostname}/wiki/;
363
+
''; # overriding nixpkgs /wiki/ redirect since as our double-proxy makes it redirect to :1036
364
+
};
365
+
"= /favicon.ico".alias = config.ingredient.wiki.wiki.favicon;
366
+
"= /icon.svg".alias = config.ingredient.wiki.wiki.icon;
367
+
};
368
+
369
+
extraConfig = ''
370
+
client_max_body_size 1024M;
371
+
'';
372
+
};
373
+
services.nginx.virtualHosts."external.${config.ingredient.wiki.wiki.hostname}" =
374
+
lib.mkIf config.ingredient.wiki.wiki.enablePublicInternet
375
+
{
376
+
listenAddresses = [
377
+
"0.0.0.0"
378
+
"[::0]"
379
+
];
380
+
381
+
serverName = config.ingredient.wiki.wiki.hostname;
382
+
383
+
addSSL = true;
384
+
enableACME = true;
385
+
acmeRoot = null;
386
+
387
+
locations."/" = {
388
+
proxyPass = "http://127.0.0.1:1036";
389
+
recommendedProxySettings = true;
390
+
proxyWebsockets = true;
391
+
392
+
extraConfig = ''
393
+
proxy_set_header X-Webauth-Login "";
394
+
proxy_set_header X-From-Tailscale "";
395
+
proxy_cache off;
396
+
'';
397
+
};
398
+
399
+
extraConfig = ''
400
+
client_max_body_size 1024M;
401
+
'';
402
+
};
403
+
services.nginx.virtualHosts."internal.${config.ingredient.wiki.wiki.hostname}" = {
404
+
listenAddresses = [ "localhost.tailscale" ];
405
+
406
+
serverName = config.ingredient.wiki.wiki.hostname;
407
+
408
+
addSSL = true;
409
+
enableACME = true;
410
+
acmeRoot = null;
411
+
412
+
locations."/" = {
413
+
proxyPass = "http://127.0.0.1:1036";
414
+
recommendedProxySettings = true;
415
+
proxyWebsockets = true;
416
+
417
+
extraConfig = ''
418
+
proxy_cache off;
419
+
proxy_set_header X-From-Tailscale "Yes";
420
+
'';
421
+
};
422
+
423
+
locations."@empty" = {
424
+
return = "200";
425
+
};
426
+
427
+
locations."/auth" = {
428
+
extraConfig = ''
429
+
proxy_intercept_errors on;
430
+
error_page 403 =200 @empty; # We always want to return 200 so as to allow server access
431
+
'';
432
+
};
433
+
434
+
extraConfig = ''
435
+
client_max_body_size 1024M;
436
+
'';
437
+
};
438
+
439
+
services.nginx.tailscaleAuth = {
440
+
enable = true;
441
+
virtualHosts = [ "internal.${config.ingredient.wiki.wiki.hostname}" ];
442
+
};
443
+
};
444
+
}
-3
packetmix/workspace.josh.license
-3
packetmix/workspace.josh.license
+54
projects/nilla.nix
+54
projects/nilla.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
let
6
+
pins = import ./npins;
7
+
8
+
nilla = import pins.nilla;
9
+
10
+
settings = config: {
11
+
nixpkgs = {
12
+
configuration.allowUnfree = true;
13
+
overlays = [
14
+
config.inputs.fenix.result.overlays.default
15
+
];
16
+
};
17
+
"nixos-24.11" = (settings config).nixpkgs;
18
+
nixos-unstable = (settings config).nixpkgs;
19
+
};
20
+
21
+
result = (nilla.create [ ]).extend {
22
+
modules = [
23
+
./project.nix
24
+
(
25
+
{ config, ... }:
26
+
{
27
+
config.inputs = builtins.mapAttrs (name: value: {
28
+
src = value;
29
+
settings = (settings config).${name} or config.lib.constants.undefined;
30
+
}) pins;
31
+
}
32
+
)
33
+
]
34
+
++ (
35
+
if (builtins.readDir ./.) ? "dependencies" then
36
+
let
37
+
dependenciesDir = ./dependencies;
38
+
dependencies = builtins.attrNames (builtins.readDir dependenciesDir);
39
+
depedencyFiles = map (name: "${./dependencies}/${name}/project.nix") dependencies;
40
+
in
41
+
depedencyFiles
42
+
else
43
+
[ ]
44
+
);
45
+
46
+
args = {
47
+
inherit nilla pins; # pins needs to be a static arg for us to import from it...
48
+
};
49
+
};
50
+
in
51
+
result.config
52
+
// {
53
+
extend = result.extend;
54
+
}
+7
projects/packetmix/workspace.josh
+7
projects/packetmix/workspace.josh
+3
projects/packetmix/workspace.josh.license
+3
projects/packetmix/workspace.josh.license
+5
projects/sprinkles/workspace.josh
+5
projects/sprinkles/workspace.josh
+3
projects/sprinkles/workspace.josh.license
+3
projects/sprinkles/workspace.josh.license
-107
sprinkles/nilla.nix
-107
sprinkles/nilla.nix
···
1
-
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
-
#
3
-
# SPDX-License-Identifier: MIT
4
-
5
-
let
6
-
pins = import ./npins;
7
-
8
-
nilla = import pins.nilla;
9
-
in
10
-
nilla.create ({ config, lib }: {
11
-
config = {
12
-
inputs = {
13
-
fenix.src = pins.fenix;
14
-
quickshell.src = pins.quickshell;
15
-
16
-
nixpkgs = {
17
-
src = pins.nixpkgs;
18
-
19
-
settings = {
20
-
overlays = [
21
-
config.inputs.fenix.result.overlays.default
22
-
];
23
-
};
24
-
};
25
-
};
26
-
27
-
packages.default = config.packages.sprinkles;
28
-
packages.sprinkles = {
29
-
systems = [ "x86_64-linux" "aarch64-linux" ];
30
-
31
-
package = { fenix, makeRustPlatform, lib, installShellFiles, dbus, ... }:
32
-
let
33
-
toolchain = fenix.complete.toolchain;
34
-
35
-
manifest = (lib.importTOML ./Cargo.toml).package;
36
-
37
-
platform = makeRustPlatform {
38
-
cargo = toolchain;
39
-
rustc = toolchain;
40
-
};
41
-
in
42
-
platform.buildRustPackage {
43
-
meta.mainProgram = "sprinkles";
44
-
pname = manifest.name;
45
-
version = manifest.version;
46
-
47
-
src = ./.;
48
-
49
-
buildInputs = [ dbus ];
50
-
nativeBuildInputs = [ installShellFiles ];
51
-
52
-
cargoLock.lockFile = ./Cargo.lock;
53
-
};
54
-
};
55
-
56
-
shells.default = config.shells.sprinkles;
57
-
shells.sprinkles = {
58
-
systems = [ "x86_64-linux" "aarch64-linux" ];
59
-
60
-
shell = { mkShell, kdePackages, fenix, bacon, pkg-config, reuse, dbus, sqlx-cli, system, ... }:
61
-
mkShell {
62
-
QML_IMPORT_PATH =
63
-
lib.fp.pipe
64
-
[
65
-
(map (pkg: "${pkg}/lib/qt-6/qml"))
66
-
(builtins.concatStringsSep ":")
67
-
]
68
-
[
69
-
(config.inputs.quickshell.result.packages.${system}.default.override { gitRev=pins.quickshell.revision; })
70
-
kdePackages.qtdeclarative
71
-
];
72
-
73
-
buildInputs = [ dbus ];
74
-
packages = [
75
-
kdePackages.qtdeclarative
76
-
(fenix.complete.withComponents [
77
-
"cargo"
78
-
"clippy"
79
-
"rust-src"
80
-
"rustc"
81
-
"rustfmt"
82
-
"rust-analyzer"
83
-
])
84
-
sqlx-cli
85
-
bacon
86
-
pkg-config
87
-
reuse
88
-
dbus
89
-
];
90
-
};
91
-
};
92
-
shells.testing = {
93
-
systems = [ "x86_64-linux" "aarch64-linux" ];
94
-
95
-
shell = { mkShell, libnotify, sqlitebrowser, system, ... }:
96
-
mkShell {
97
-
buildInputs = [ libnotify ];
98
-
packages = [
99
-
libnotify
100
-
sqlitebrowser
101
-
config.packages.default.result.${system}
102
-
(config.inputs.quickshell.result.packages.${system}.default.override { gitRev=pins.quickshell.revision; })
103
-
];
104
-
};
105
-
};
106
-
};
107
-
})
-146
sprinkles/npins/default.nix
-146
sprinkles/npins/default.nix
···
1
-
/*
2
-
This file is provided under the MIT licence:
3
-
4
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the โSoftwareโ), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5
-
6
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7
-
8
-
THE SOFTWARE IS PROVIDED โAS ISโ, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
9
-
*/
10
-
# Generated by npins. Do not modify; will be overwritten regularly
11
-
let
12
-
data = builtins.fromJSON (builtins.readFile ./sources.json);
13
-
version = data.version;
14
-
15
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/lists.nix#L295
16
-
range =
17
-
first: last: if first > last then [ ] else builtins.genList (n: first + n) (last - first + 1);
18
-
19
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L257
20
-
stringToCharacters = s: map (p: builtins.substring p 1 s) (range 0 (builtins.stringLength s - 1));
21
-
22
-
# https://github.com/NixOS/nixpkgs/blob/0258808f5744ca980b9a1f24fe0b1e6f0fecee9c/lib/strings.nix#L269
23
-
stringAsChars = f: s: concatStrings (map f (stringToCharacters s));
24
-
concatMapStrings = f: list: concatStrings (map f list);
25
-
concatStrings = builtins.concatStringsSep "";
26
-
27
-
# If the environment variable NPINS_OVERRIDE_${name} is set, then use
28
-
# the path directly as opposed to the fetched source.
29
-
# (Taken from Niv for compatibility)
30
-
mayOverride =
31
-
name: path:
32
-
let
33
-
envVarName = "NPINS_OVERRIDE_${saneName}";
34
-
saneName = stringAsChars (c: if (builtins.match "[a-zA-Z0-9]" c) == null then "_" else c) name;
35
-
ersatz = builtins.getEnv envVarName;
36
-
in
37
-
if ersatz == "" then
38
-
path
39
-
else
40
-
# this turns the string into an actual Nix path (for both absolute and
41
-
# relative paths)
42
-
builtins.trace "Overriding path of \"${name}\" with \"${ersatz}\" due to set \"${envVarName}\"" (
43
-
if builtins.substring 0 1 ersatz == "/" then
44
-
/. + ersatz
45
-
else
46
-
/. + builtins.getEnv "PWD" + "/${ersatz}"
47
-
);
48
-
49
-
mkSource =
50
-
name: spec:
51
-
assert spec ? type;
52
-
let
53
-
path =
54
-
if spec.type == "Git" then
55
-
mkGitSource spec
56
-
else if spec.type == "GitRelease" then
57
-
mkGitSource spec
58
-
else if spec.type == "PyPi" then
59
-
mkPyPiSource spec
60
-
else if spec.type == "Channel" then
61
-
mkChannelSource spec
62
-
else if spec.type == "Tarball" then
63
-
mkTarballSource spec
64
-
else
65
-
builtins.throw "Unknown source type ${spec.type}";
66
-
in
67
-
spec // { outPath = mayOverride name path; };
68
-
69
-
mkGitSource =
70
-
{
71
-
repository,
72
-
revision,
73
-
url ? null,
74
-
submodules,
75
-
hash,
76
-
branch ? null,
77
-
...
78
-
}:
79
-
assert repository ? type;
80
-
# At the moment, either it is a plain git repository (which has an url), or it is a GitHub/GitLab repository
81
-
# In the latter case, there we will always be an url to the tarball
82
-
if url != null && !submodules then
83
-
builtins.fetchTarball {
84
-
inherit url;
85
-
sha256 = hash;
86
-
}
87
-
else
88
-
let
89
-
url =
90
-
if repository.type == "Git" then
91
-
repository.url
92
-
else if repository.type == "GitHub" then
93
-
"https://github.com/${repository.owner}/${repository.repo}.git"
94
-
else if repository.type == "GitLab" then
95
-
"${repository.server}/${repository.repo_path}.git"
96
-
else
97
-
throw "Unrecognized repository type ${repository.type}";
98
-
urlToName =
99
-
url: rev:
100
-
let
101
-
matched = builtins.match "^.*/([^/]*)(\\.git)?$" url;
102
-
103
-
short = builtins.substring 0 7 rev;
104
-
105
-
appendShort = if (builtins.match "[a-f0-9]*" rev) != null then "-${short}" else "";
106
-
in
107
-
"${if matched == null then "source" else builtins.head matched}${appendShort}";
108
-
name = urlToName url revision;
109
-
in
110
-
builtins.fetchGit {
111
-
rev = revision;
112
-
narHash = hash;
113
-
114
-
inherit name submodules url;
115
-
};
116
-
117
-
mkPyPiSource =
118
-
{ url, hash, ... }:
119
-
builtins.fetchurl {
120
-
inherit url;
121
-
sha256 = hash;
122
-
};
123
-
124
-
mkChannelSource =
125
-
{ url, hash, ... }:
126
-
builtins.fetchTarball {
127
-
inherit url;
128
-
sha256 = hash;
129
-
};
130
-
131
-
mkTarballSource =
132
-
{
133
-
url,
134
-
locked_url ? url,
135
-
hash,
136
-
...
137
-
}:
138
-
builtins.fetchTarball {
139
-
url = locked_url;
140
-
sha256 = hash;
141
-
};
142
-
in
143
-
if version == 6 then
144
-
builtins.mapAttrs mkSource data.pins
145
-
else
146
-
throw "Unsupported format version ${toString version} in sources.json. Try running `npins upgrade`"
-3
sprinkles/npins/default.nix.license
-3
sprinkles/npins/default.nix.license
-59
sprinkles/npins/sources.json
-59
sprinkles/npins/sources.json
···
1
-
{
2
-
"pins": {
3
-
"fenix": {
4
-
"type": "Git",
5
-
"repository": {
6
-
"type": "GitHub",
7
-
"owner": "nix-community",
8
-
"repo": "fenix"
9
-
},
10
-
"branch": "monthly",
11
-
"submodules": false,
12
-
"revision": "f44d7c3596ff028ad9f7fcc31d1941ed585f11b3",
13
-
"url": "https://github.com/nix-community/fenix/archive/f44d7c3596ff028ad9f7fcc31d1941ed585f11b3.tar.gz",
14
-
"hash": "sha256-6RzWfxENGlO73jQb3uQNgOvubUFwvveeIg+PZxhAu6s="
15
-
},
16
-
"nilla": {
17
-
"type": "Git",
18
-
"repository": {
19
-
"type": "GitHub",
20
-
"owner": "nilla-nix",
21
-
"repo": "nilla"
22
-
},
23
-
"branch": "main",
24
-
"submodules": false,
25
-
"revision": "4e6038f4ebc89487194013af6a1e077dfeb00359",
26
-
"url": "https://github.com/nilla-nix/nilla/archive/4e6038f4ebc89487194013af6a1e077dfeb00359.tar.gz",
27
-
"hash": "sha256-7iLzbTLtgdFtm9em3xxHO9BunN2YpgYquMLKXh5hEpQ="
28
-
},
29
-
"nixpkgs": {
30
-
"type": "Git",
31
-
"repository": {
32
-
"type": "GitHub",
33
-
"owner": "nixos",
34
-
"repo": "nixpkgs"
35
-
},
36
-
"branch": "nixos-unstable",
37
-
"submodules": false,
38
-
"revision": "a84ebe20c6bc2ecbcfb000a50776219f48d134cc",
39
-
"url": "https://github.com/nixos/nixpkgs/archive/a84ebe20c6bc2ecbcfb000a50776219f48d134cc.tar.gz",
40
-
"hash": "sha256-mNqIplmEohk5jRkqYqG19GA8MbQ/D4gQSK0Mu4LvfRQ="
41
-
},
42
-
"quickshell": {
43
-
"type": "GitRelease",
44
-
"repository": {
45
-
"type": "Git",
46
-
"url": "https://git.outfoxxed.me/quickshell/quickshell.git"
47
-
},
48
-
"pre_releases": false,
49
-
"version_upper_bound": null,
50
-
"release_prefix": null,
51
-
"submodules": false,
52
-
"version": "v0.2.0",
53
-
"revision": "a5431dd02dc23d9ef1680e67777fed00fe5f7cda",
54
-
"url": null,
55
-
"hash": "sha256-vqkSDvh7hWhPvNjMjEDV4KbSCv2jyl2Arh73ZXe274k="
56
-
}
57
-
},
58
-
"version": 6
59
-
}
-3
sprinkles/npins/sources.json.license
-3
sprinkles/npins/sources.json.license
+132
sprinkles/project.nix
+132
sprinkles/project.nix
···
1
+
# SPDX-FileCopyrightText: 2025 FreshlyBakedCake
2
+
#
3
+
# SPDX-License-Identifier: MIT
4
+
5
+
{
6
+
pins,
7
+
config,
8
+
lib,
9
+
}:
10
+
{
11
+
config = {
12
+
packages.default = config.packages.sprinkles;
13
+
packages.sprinkles = {
14
+
systems = [
15
+
"x86_64-linux"
16
+
"aarch64-linux"
17
+
];
18
+
19
+
package =
20
+
{
21
+
fenix,
22
+
makeRustPlatform,
23
+
lib,
24
+
installShellFiles,
25
+
dbus,
26
+
...
27
+
}:
28
+
let
29
+
toolchain = fenix.complete.toolchain;
30
+
31
+
manifest = (lib.importTOML ./Cargo.toml).package;
32
+
33
+
platform = makeRustPlatform {
34
+
cargo = toolchain;
35
+
rustc = toolchain;
36
+
};
37
+
in
38
+
platform.buildRustPackage {
39
+
meta.mainProgram = "sprinkles";
40
+
pname = manifest.name;
41
+
version = manifest.version;
42
+
43
+
src = ./.;
44
+
45
+
buildInputs = [ dbus ];
46
+
nativeBuildInputs = [ installShellFiles ];
47
+
48
+
cargoLock.lockFile = ./Cargo.lock;
49
+
};
50
+
};
51
+
52
+
shells.default = config.shells.sprinkles;
53
+
shells.sprinkles = {
54
+
systems = [
55
+
"x86_64-linux"
56
+
"aarch64-linux"
57
+
];
58
+
59
+
shell =
60
+
{
61
+
mkShell,
62
+
kdePackages,
63
+
fenix,
64
+
bacon,
65
+
pkg-config,
66
+
reuse,
67
+
dbus,
68
+
sqlx-cli,
69
+
system,
70
+
...
71
+
}:
72
+
mkShell {
73
+
QML_IMPORT_PATH =
74
+
lib.fp.pipe
75
+
[
76
+
(map (pkg: "${pkg}/lib/qt-6/qml"))
77
+
(builtins.concatStringsSep ":")
78
+
]
79
+
[
80
+
(config.inputs.quickshell.result.packages.${system}.default.override {
81
+
gitRev = pins.quickshell.revision;
82
+
})
83
+
kdePackages.qtdeclarative
84
+
];
85
+
86
+
buildInputs = [ dbus ];
87
+
packages = [
88
+
kdePackages.qtdeclarative
89
+
(fenix.complete.withComponents [
90
+
"cargo"
91
+
"clippy"
92
+
"rust-src"
93
+
"rustc"
94
+
"rustfmt"
95
+
"rust-analyzer"
96
+
])
97
+
sqlx-cli
98
+
bacon
99
+
pkg-config
100
+
reuse
101
+
dbus
102
+
];
103
+
};
104
+
};
105
+
shells.testing = {
106
+
systems = [
107
+
"x86_64-linux"
108
+
"aarch64-linux"
109
+
];
110
+
111
+
shell =
112
+
{
113
+
mkShell,
114
+
libnotify,
115
+
sqlitebrowser,
116
+
system,
117
+
...
118
+
}:
119
+
mkShell {
120
+
buildInputs = [ libnotify ];
121
+
packages = [
122
+
libnotify
123
+
sqlitebrowser
124
+
config.packages.default.result.${system}
125
+
(config.inputs.quickshell.result.packages.${system}.default.override {
126
+
gitRev = pins.quickshell.revision;
127
+
})
128
+
];
129
+
};
130
+
};
131
+
};
132
+
}
-1
sprinkles/workspace.josh
-1
sprinkles/workspace.josh
···
1
-
::LICENSES/