-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (57 loc) · 1.49 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
51
52
53
54
55
56
57
58
{
"name": "peynman/larapress-profiles",
"description": "This is the description of the package.",
"type": "library",
"license": "MIT",
"minimum-stability": "dev",
"authors": [{
"name": "Peyman Abdi",
"email": "[email protected]"
}],
"autoload": {
"psr-4": {
"Larapress\\Profiles\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Larapress\\Profiles\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Larapress\\Profiles\\Providers\\PackageServiceProvider"
]
}
},
"require": {
"php": "^7.0|^8.0",
"laravel/framework": "^8.0",
"mews/captcha": "^3.2.1",
"peynman/larapress-reports": "master"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"fzaninotto/faker": "^1.4",
"mockery/mockery": "^1.0",
"nunomaduro/collision": "^5.0",
"orchestra/testbench": "^6.2.0",
"phpunit/phpunit": "^9.0",
"phpmd/phpmd": "@stable",
"squizlabs/php_codesniffer": "3.*"
},
"repositories": {
"brunogasparetto/adobe-connect-client":{
"type": "vcs",
"url": "https://github.com/peynman/AdobeConnectClient.git"
},
"peynman/larapress-reports": {
"type": "path",
"url": "../press-reports",
"options": {
"symlink": true
}
}
}
}