-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
55 lines (55 loc) · 1.55 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
{
"name": "intoxstudio/restrict-user-access",
"type": "project",
"license": "GPL-3.0",
"autoload": {
"psr-4": {
"RestrictUserAccess\\": "src/"
},
"files": [
"lib/wp-content-aware-engine/bootstrap.php",
"src/helpers.php",
"lib/wp-db-updater/wp-db-updater.php",
"helpers/collection.php",
"interfaces/user_level.php",
"interfaces/user.php",
"interfaces/level.php",
"models/user.php",
"models/level.php",
"models/user_level.php",
"admin/admin.php",
"admin/admin_bar.php",
"admin/level-list-table.php",
"admin/level-overview.php",
"admin/level-edit.php",
"admin/settings.php",
"admin/screen_account.php",
"admin/screen_addons.php",
"admin/nav-menu.php",
"list-members.php",
"list-capabilities.php",
"app.php",
"level.php",
"freemius.php",
"api/deprecated.php",
"api/functions.php",
"automators/base.php"
]
},
"authors": [
{
"name": "Joachim Jensen",
"email": "joachim@dev.institute"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64"
},
"scripts": {
"cs-fixer": "vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php"
}
}