blob: 35c60576694512043c35d7010b1de9e5aed4078c [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001{
2 "name": "directorytree/ldaprecord",
3 "type": "library",
4 "description": "A fully-featured LDAP ORM.",
5 "homepage": "https://www.ldaprecord.com",
6 "keywords": [
7 "active directory",
8 "directory",
9 "ad",
10 "ldap",
11 "windows",
12 "adldap",
13 "adldap2",
14 "ldaprecord",
15 "orm"
16 ],
17 "license": "MIT",
18 "support": {
19 "docs": "https://ldaprecord.com",
20 "issues": "https://github.com/DirectoryTree/LdapRecord/issues",
21 "source": "https://github.com/DirectoryTree/LdapRecord",
22 "email": "steven_bauman@outlook.com"
23 },
24 "authors": [
25 {
26 "name": "Steve Bauman",
27 "email": "steven_bauman@outlook.com",
28 "role": "Developer"
29 }
30 ],
31 "require": {
32 "php": ">=7.3",
33 "ext-ldap": "*",
34 "ext-json": "*",
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010035 "psr/log": "*",
36 "psr/simple-cache": "^1.0|^2.0",
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020037 "nesbot/carbon": "^1.0|^2.0",
38 "tightenco/collect": "^5.6|^6.0|^7.0|^8.0",
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010039 "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0"
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020040 },
41 "require-dev": {
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010042 "phpunit/phpunit": "^9.0",
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020043 "mockery/mockery": "^1.0",
44 "spatie/ray": "^1.24"
45 },
46 "archive": {
Matthias Andreas Benkard1ba53812022-12-27 17:32:58 +010047 "exclude": [
48 "/tests"
49 ]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +020050 },
51 "autoload": {
52 "psr-4": {
53 "LdapRecord\\": "src/"
54 }
55 },
56 "autoload-dev": {
57 "psr-4": {
58 "LdapRecord\\Tests\\": "tests/"
59 }
60 }
61}