-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·79 lines (79 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "muhamed-didovic/csrf",
"type": "library",
"description": "Protect your application from cross-site request forgery (CSRF) attacks",
"keywords": [
"muhamed-didovic",
"csrf"
],
"homepage": "https://github.com/muhamed-didovic/csrf",
"license": "MIT",
"authors": [
{
"name": "Muhamed Didovic",
"email": "muhamed.didovic@gmail.com",
"homepage": "https://github.com/muhamed-didovic",
"role": "Developer"
},
{
"name": "Goran Radosevic",
"email": "goran.radosevic@outlook.com"
}
],
"require": {
"illuminate/auth": "5.4.*",
"illuminate/broadcasting": "5.4.*",
"illuminate/cache": "5.4.*",
"illuminate/config": "5.4.*",
"illuminate/container": "5.4.*",
"illuminate/contracts": "5.4.*",
"illuminate/cookie": "5.4.*",
"illuminate/encryption": "5.4.*",
"illuminate/events": "5.4.*",
"illuminate/hashing": "5.4.*",
"illuminate/log": "5.4.*",
"illuminate/mail": "5.4.*",
"illuminate/notifications": "5.4.*",
"illuminate/pagination": "5.4.*",
"illuminate/redis": "5.4.*",
"illuminate/routing": "5.4.*",
"illuminate/support": "5.4.*",
"illuminate/translation": "5.4.*",
"illuminate/validation": "5.4.*",
"illuminate/view": "5.4.*",
"larapack/dd": "1.*",
"nesbot/carbon": "^1.37"
},
"require-dev": {
"orchestra/testbench-core": "^3.4",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"MuhamedDidovic\\Csrf\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MuhamedDidovic\\Tests\\": "tests",
"Illuminate\\Foundation\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"config": {
"sort-packages": true
}
}