-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
39 lines (39 loc) · 976 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
{
"name": "fyre/db",
"description": "A database library.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "elusivecodes",
"email": "elusivecodes@gmail.com"
}
],
"autoload": {
"psr-4": {
"Fyre\\DB\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"fyre/config": "^4.0",
"fyre/container": "^1.0",
"fyre/datetime": "^3.0",
"fyre/event": "^4.0",
"fyre/typeparser": "^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"fyre/php-cs-fixer-config": "^1.0",
"phpunit/phpunit": "^11"
},
"scripts": {
"cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff",
"cs-fix": "php-cs-fixer fix --ansi --verbose --diff",
"test": "phpunit tests"
}
}