forked from ml-archive/magic-box
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.12 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
{
"name": "koala-labs/pouch",
"description": "A magical implementation of Laravel's Eloquent models as injectable, masked resource repositories.",
"license": "MIT",
"homepage": "https://koala.io/",
"require": {
"php": "^7.4|^8.0",
"illuminate/database": "^8|^9|^10"
},
"require-dev": {
"phpunit/phpunit": "^9",
"orchestra/testbench": "^6|^7|^8",
"mockery/mockery": "^1",
"friendsofphp/php-cs-fixer": "3.4.*"
},
"authors": [
{
"name": "Koala Labs",
"email": "engineering@koala.io"
}
],
"autoload": {
"psr-4": {
"Koala\\Pouch\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Koala\\Pouch\\Tests\\": "tests/",
"Koala\\Pouch\\Tests\\Seeds\\": "tests/seeds"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit"
],
"test-coverage": [
"vendor/bin/phpunit --coverage-text"
],
"test-repo": [
"vendor/bin/phpunit --filter EloquentRepositoryTest"
],
"style-fix": "php-cs-fixer fix --config=.php_cs.dist.php",
"style-lint": "php-cs-fixer fix --dry-run -vv --diff --config=.php_cs.dist.php",
"phan": [
"phan --progress-bar -o phan_analysis.txt"
]
},
"minimum-stability": "stable"
}