-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
40 lines (40 loc) · 994 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
{
"name": "pulsar/pulsar",
"description": "ORM implementing the Active Record pattern in PHP",
"type": "library",
"keywords": ["pulsar","database","orm","activerecord"],
"license": "MIT",
"authors": [
{
"name": "jaredtking",
"email": "[email protected]",
"homepage": "http://jaredtking.com"
}
],
"support": {
"issues": "https://github.com/jaredtking/pulsar/issues",
"source": "https://github.com/jaredtking/pulsar"
},
"autoload": {
"psr-4": {"Pulsar\\": "src/"}
},
"autoload-dev": {
"psr-4": { "Pulsar\\Tests\\": "tests/" }
},
"require": {
"php": ">=8.1",
"icanboogie/inflector": "^2.0",
"symfony/event-dispatcher": ">=4.3",
"jaqb/jaqb": "^1.6",
"psr/cache": "^1 | ^2 | ^3"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"phpunit/php-code-coverage": "^9.2",
"satooshi/php-coveralls": "1.0.0",
"mockery/mockery": "~1.0",
"symfony/cache": "~4.0|~5.0|~6.0",
"doctrine/dbal": "~2.5|~3.0",
"defuse/php-encryption": "^2.2"
}
}