generated from pestphp/pest-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
67 lines (67 loc) · 1.86 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lukeraymonddowning/pest-plugin-money",
"description": "A Pest PHP plugin that makes testing popular Money packages easy.",
"keywords": [
"php",
"framework",
"pest",
"unit",
"test",
"testing",
"plugin"
],
"license": "MIT",
"require": {
"php": "^7.3 || ^8.0 || ^8.1",
"pestphp/pest": "^1.5",
"pestphp/pest-plugin": "^1.0"
},
"autoload": {
"psr-4": {
"Lukeraymonddowning\\PestPluginMoney\\": "src/"
},
"files": [
"src/Autoload.php"
]
},
"autoload-dev": {
"psr-4": {
"Lukeraymonddowning\\PestPluginMoney\\Tests\\": "tests"
}
},
"require-dev": {
"brick/money": "^0.5.3",
"friendsofphp/php-cs-fixer": "^3.3",
"moneyphp/money": "^3.3",
"orchestra/testbench": "^6.23",
"pestphp/pest-dev-tools": "dev-master",
"phpstan/phpstan": "^1.1"
},
"suggest": {
"brick/money": "A powerful, immutable money library with support for specialized currencies",
"moneyphp/money": "A simpler but less versatile money library",
"archtechx/money": "A Laravel library for handling money"
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"lint": "./vendor/bin/php-cs-fixer fix -v",
"test:lint": "./vendor/bin/php-cs-fixer fix -v --dry-run",
"test:types": "./vendor/bin/phpstan analyse --ansi",
"test:unit": "./vendor/bin/pest --colors=always --exclude-group='^8.0'",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
}
}