blob: 88ebb77aefebf237b917f753bf61b31ef11302ca [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": {
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010013 "php": "^7.3|^8.0",
14 "symfony/var-dumper": "^3.4 || ^4.0 || ^5.0 || ^6.0"
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020015 },
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",
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010036 "tests/files/Support/Traits/Conditionable.php",
37 "tests/files/Support/Stringable.php",
38 "tests/files/Support/ItemNotFoundException.php",
39 "tests/files/Support/MultipleItemsFoundException.php",
40 "tests/Support/Concerns/CountsEnumerations.php"
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020041 ]
42 },
43 "scripts": {
44 "test": [
45 "@composer install",
46 "phpunit"
47 ]
48 },
49 "minimum-stability": "dev",
50 "prefer-stable": true
51}