-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.09 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
{
"name": "jimwins/titi",
"type": "library",
"description": "A lightweight nearly-zero-configuration object-relational mapper and fluent query builder for PHP, plus a lightweight ActiveRecord implementation",
"keywords": ["titi", "paris", "idiorm", "orm", "query builder", "activerecord"],
"homepage": "https://trainedmonkey.com/projects/titi/",
"support": {
"issues": "https://github.com/jimwins/titi/issues",
"source": "https://github.com/jimwins/titi"
},
"authors": [
{
"name": "Jim Winstead",
"email": "[email protected]",
"homepage": "https://trainedmonkey.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit -c ./phpunit.xml"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"ext-pdo_sqlite": "*",
"phpstan/phpstan": "^1.10"
},
"license": [
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-4-Clause"
],
"require": {
"php": ">=5.6.0"
},
"autoload": {
"psr-4": {
"Titi\\": "src"
}
}
}