-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.15 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "loophp/composer-strip-nondeterminism",
"description": "A plugin for Composer for stripping non-deterministic information such as timestamps from vendor directory.",
"license": "MIT",
"type": "composer-plugin",
"homepage": "https://github.com/loophp/composer-strip-nondeterminism",
"funding": [
{
"type": "github",
"url": "https://github.com/drupol"
}
],
"require": {
"php": ">= 8.0",
"composer-plugin-api": "^2"
},
"require-dev": {
"composer/composer": "^2.6",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"loophp\\ComposerStripNondeterminism\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"test\\loophp\\ComposerStripNondeterminism\\": "test"
}
},
"extra": {
"class": "loophp\\ComposerStripNondeterminism\\Plugin"
},
"scripts": {
"test": "cd test; ../vendor/bin/phpunit --order-by=default -v",
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v"
}
}