forked from Corp-Soft/laravel-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
{
"name": "manageitwa/laravel-fixtures",
"description": "Loads fake data sets into Laravel for testing.",
"type": "library",
"keywords": [
"fixtures",
"laravel",
"testing"
],
"license": "MIT",
"authors": [
{
"name": "Igor Chepurnoi",
"email": "chepurnoi.igor@gmail.com"
}
],
"require": {
"php": "7.4.*|^8.0",
"illuminate/database": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0",
"illuminate/support": "~5.5|^6.0|^7.0|^8.0|^9.0|^10.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0|^3.0",
"phpunit/phpunit": "~9.0",
"dms/phpunit-arraysubset-asserts": "^0.5.0",
"orchestra/testbench": "~3.5.0|^4.0|^5.0|^6.0|^7.0|^8.0"
},
"autoload": {
"psr-4": {
"CorpSoft\\Fixture\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CorpSoft\\Tests\\Fixture\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "php-cs-fixer fix --dry-run --diff"
}
}