-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 883 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
40
41
{
"name": "aklump/easy-perms",
"type": "project",
"autoload": {
"psr-4": {
"AKlump\\EasyPerms\\": "src/",
"AKlump\\EasyPerms\\Tests\\": "tests_unit/"
}
},
"repositories": [
{
"type": "github",
"url": "https://github.com/aklump/gitignore"
}
],
"authors": [
{
"name": "Aaron Klump",
"email": "[email protected]"
}
],
"require": {
"aklump/gitignore": "^0.0",
"crysalead/dir": "^2.0",
"ext-json": "*",
"php": ">=7.4",
"psr/simple-cache": "^1.0",
"sebastian/cli-parser": "^1.0",
"symfony/console": "^5.4 || ^6.0",
"symfony/filesystem": "^5.4 || ^6.0",
"symfony/yaml": "^3.4 || ^4.4 || ^5.4 || ^6.0"
},
"license": "BSD-3-Clause",
"bin": [
"./bin/easy-perms"
],
"require-dev": {
"phpunit/phpunit": "^9.5",
"aklump/phpswap": "^0.0.11"
}
}