-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
67 lines (67 loc) · 2.45 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": "astrotomic/phpunit-assertions",
"description": "Set of common PHPUnit custom assertions.",
"license": "MIT",
"keywords": [
"phpunit",
"assertions"
],
"authors": [
{
"name": "Tom Witkowski",
"email": "[email protected]",
"homepage": "https://astrotomic.info",
"role": "Developer"
}
],
"homepage": "https://github.com/Astrotomic/phpunit-assertions",
"require": {
"php": "^7.4 || ^8.0",
"phpunit/phpunit": "^9.1 || ^10.0"
},
"require-dev": {
"astrotomic/iso639": "^1.0",
"egulias/email-validator": "^2.1 || ^3.0",
"gajus/dindent": "^2.0",
"giggsey/libphonenumber-for-php": "^8.12",
"hashids/hashids": "^4.0",
"league/iso3166": "^2.1 || ^3.0",
"orchestra/testbench": "^6.0 || ^7.0",
"ramsey/uuid": "^4.0",
"vinkla/hashids": "^9.0 || ^10.0"
},
"suggest": {
"astrotomic/iso639": "\\Astrotomic\\PhpunitAssertions\\LanguageAssertions (^1.0)",
"egulias/email-validator": "\\Astrotomic\\PhpunitAssertions\\EmailAssertions (^2.1 || ^3.0)",
"gajus/dindent": "\\Astrotomic\\PhpunitAssertions\\Laravel\\BladeAssertions (^2.0)",
"giggsey/libphonenumber-for-php": "\\Astrotomic\\PhpunitAssertions\\PhoneNumberAssertions (^8.12)",
"hashids/hashids": "\\Astrotomic\\PhpunitAssertions\\HashidAssertions (^4.0)",
"league/iso3166": "\\Astrotomic\\PhpunitAssertions\\CountryAssertions (^2.1 || ^3.0)",
"ramsey/uuid": "\\Astrotomic\\PhpunitAssertions\\UuidAssertions (^4.0)",
"vinkla/hashids": "\\Astrotomic\\PhpunitAssertions\\Laravel\\HashidAssertions (^9.0)"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Astrotomic\\PhpunitAssertions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Astrotomic\\PhpunitAssertions\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@composer validate --strict --ansi --no-interaction --quiet",
"@composer normalize --ansi --no-interaction --quiet",
"@composer thanks --ansi --no-interaction --quiet"
],
"normalize": "echo 'composer global require ergebnis/composer-normalize'",
"thanks": "echo 'composer global require symfony/thanks'"
}
}