-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "corp-soft/laravel-fixtures",
"description": "Laravel Fixtures are used to load a 'fake' set of data into a database that can then be used for testing",
"type": "library",
"keywords": [
"Fixture"
],
"license": "MIT",
"authors": [
{
"name": "Igor Chepurnoi",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"illuminate/database": "~5.5",
"illuminate/support": "~5.5"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.0",
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "~3.5.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"
}
}