-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "pyxol/magnetar",
"type": "library",
"description": "Magnetar is a web application framework that focuses on speed and ease of use.",
"keywords": ["magnetar", "framework"],
"license": "MIT",
"homepage": "https://pyxol.com",
"support": {
"issues": "https://github.com/pyxol/magnetar/issues",
"source": "https://github.com/pyxol/magnetar"
},
"authors": [
{
"name": "Don Wilson",
"email": "[email protected]",
"homepage": "https://pyxol.com/",
"role": "Lead Developer"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"filp/whoops": "^2.15",
"jbzoo/jbdump": "^1.5",
"league/flysystem-aws-s3-v3": "^3.0",
"php-amqplib/php-amqplib": "^3.0",
"phpunit/phpunit": "^10.2"
},
"autoload": {
"files": [
"src/Magnetar/_autoload.php",
"src/Magnetar/Template/_autoload.php"
],
"psr-4": {
"Magnetar\\": "src/Magnetar/"
}
},
"autoload-dev": {
"psr-4": {
"Magnetar\\Tests\\": "tests/"
}
},
"suggest": {
"ext-memcached": "Required for using memcache-specific caching functionality",
"ext-pdo": "Required for using database functionality",
"ext-redis": "Required for using redis-specific caching and queueing functionality",
"filp/whoops": "Strongly suggested for development environments",
"phpunit/phpunit": "Required for running unit tests",
"php-amqplib/php-amqplib": "Required for using RabbitMQ-specific queueing functionality",
"league/flysystem-aws-s3-v3": "Required for using the s3 filesystem adapter"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}