-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
40 lines (40 loc) · 1.04 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
{
"name": "imanghafoori/laravel-makesure",
"description": "A Laravel package to help you write expressive tests",
"keywords": ["laravel", "laravel-testing", "laravel-package", "PHP"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-makesure",
"authors": [
{
"name": "Iman Ghafoori",
"email": "imanghafoori1@gmail.com"
}
],
"require": {
"php": ">=7.0.0",
"laravel/framework":"~5.1|6.*|7.*|8.*|9.*|10.*|11.*"
},
"autoload-dev": {
"classmap": ["tests/TestCase.php"]
},
"require-dev": {
"orchestra/testbench": "~3.0",
"orchestra/database": "@dev",
"mockery/mockery": "~1.3"
},
"autoload": {
"psr-4": {
"Imanghafoori\\MakeSure\\": "src"
}
},
"scripts": {
"test": "./vendor/bin/phpunit"
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\MakeSure\\MakeSureServiceProvider"
]
}
}
}