blob: 58e5f6c0a8739b969027978c37e4285ea5e263d8 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001{
2 "name": "tightenco/collect",
3 "description": "Collect - Illuminate Collections as a separate package.",
4 "keywords": ["laravel", "collection"],
5 "license": "MIT",
6 "authors": [
7 {
8 "name": "Taylor Otwell",
9 "email": "taylorotwell@gmail.com"
10 }
11 ],
12 "require": {
13 "php": "^7.2|^8.0",
14 "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0"
15 },
16 "require-dev": {
17 "mockery/mockery": "^1.0",
18 "phpunit/phpunit": "^8.3",
19 "nesbot/carbon": "^2.23.0"
20 },
21 "autoload": {
22 "files": [
23 "src/Collect/Support/helpers.php",
24 "src/Collect/Support/alias.php"
25 ],
26 "psr-4": {
27 "Tightenco\\Collect\\": "src/Collect"
28 }
29 },
30 "autoload-dev": {
31 "files": [
32 "tests/files/Support/Carbon.php",
33 "tests/files/Support/HtmlString.php",
34 "tests/files/Support/HigherOrderTapProxy.php",
35 "tests/files/Support/Str.php",
36 "tests/files/Support/Stringable.php"
37 ]
38 },
39 "scripts": {
40 "test": [
41 "@composer install",
42 "phpunit"
43 ]
44 },
45 "minimum-stability": "dev",
46 "prefer-stable": true
47}