FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
aether/composer.json at master · aetherphp/aether · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
aetherphp
/
aether
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
aether
/
composer.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
96 lines (96 loc) · 3.62 KB
Breadcrumbs
aether
/
composer.json
Copy path
File metadata and controls
96 lines (96 loc) · 3.62 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name"
:
"
aether/aether
"
,
"description"
:
"
The component framework.
"
,
"license"
:
"
MIT
"
,
"type"
:
"
library
"
,
"support"
: {
"issues"
:
"
https://github.com/sxbrsky/aether/issues
"
,
"source"
:
"
https://github.com/sxbrsky/aether
"
},
"require"
: {
"php"
:
"
^8.2
"
,
"ext-fileinfo"
:
"
*
"
,
"psr/cache"
:
"
^3.0
"
,
"psr/clock"
:
"
^1.0
"
,
"psr/container"
:
"
^2.0.x-dev
"
,
"psr/event-dispatcher"
:
"
^1.0
"
,
"psr/http-factory"
:
"
^1.1
"
,
"psr/http-message"
:
"
*
"
},
"require-dev"
: {
"friendsofphp/php-cs-fixer"
:
"
^3.64
"
,
"phpstan/phpstan"
:
"
^2.0.x-dev
"
,
"phpstan/phpstan-strict-rules"
:
"
^2.0.x-dev
"
,
"phpunit/phpunit"
:
"
^12.0
"
,
"symplify/monorepo-builder"
:
"
^11.2
"
},
"replace"
: {
"aether/cache"
:
"
self.version
"
,
"aether/clock"
:
"
self.version
"
,
"aether/config"
:
"
self.version
"
,
"aether/contracts"
:
"
self.version
"
,
"aether/crypto"
:
"
self.version
"
,
"aether/database"
:
"
self.version
"
,
"aether/dependency-injection"
:
"
self.version
"
,
"aether/di"
:
"
self.version
"
,
"aether/entity"
:
"
self.version
"
,
"aether/events"
:
"
self.version
"
,
"aether/filesystem"
:
"
self.version
"
,
"aether/foundation"
:
"
self.version
"
,
"aether/http"
:
"
self.version
"
,
"aether/routing"
:
"
self.version
"
,
"aether/support"
:
"
self.version
"
},
"provide"
: {
"psr/cache"
:
"
*
"
,
"psr/clock-implementation"
:
"
*
"
,
"psr/container-implementation"
:
"
2.0.2
"
,
"psr/event-dispatcher-implementation"
:
"
*
"
,
"psr/http-factory-implementation"
:
"
*
"
,
"psr/http-message-implementation"
:
"
*
"
},
"minimum-stability"
:
"
dev
"
,
"prefer-stable"
:
true
,
"autoload"
: {
"psr-4"
: {
"Aether
\\
Cache
\\
"
:
"
packages/Cache/src/
"
,
"Aether
\\
Clock
\\
"
:
"
packages/Clock/src/
"
,
"Aether
\\
Config
\\
"
:
"
packages/Config/src/
"
,
"Aether
\\
Contracts
\\
"
:
"
packages/Contracts/
"
,
"Aether
\\
Crypto
\\
"
:
"
packages/Crypto/src/
"
,
"Aether
\\
DI
\\
"
:
"
packages/DI/src/
"
,
"Aether
\\
Database
\\
"
:
"
packages/Database/src/
"
,
"Aether
\\
Entity
\\
"
:
"
packages/Entity/src/
"
,
"Aether
\\
Events
\\
"
:
"
packages/Events/src/
"
,
"Aether
\\
Filesystem
\\
"
:
"
packages/Filesystem/src/
"
,
"Aether
\\
Foundation
\\
"
:
"
packages/Foundation/src/
"
,
"Aether
\\
Http
\\
"
:
"
packages/Http/src/
"
,
"Aether
\\
Routing
\\
"
:
"
packages/Routing/src/
"
,
"Aether
\\
Support
\\
"
:
"
packages/Support/src/
"
}
},
"autoload-dev"
: {
"psr-4"
: {
"Aether
\\
Tests
\\
Cache
\\
"
:
"
packages/Cache/tests/
"
,
"Aether
\\
Tests
\\
Clock
\\
"
:
"
packages/Clock/tests/
"
,
"Aether
\\
Tests
\\
Config
\\
"
:
"
packages/Config/tests/
"
,
"Aether
\\
Tests
\\
Crypto
\\
"
:
"
packages/Crypto/tests/
"
,
"Aether
\\
Tests
\\
DI
\\
"
:
"
packages/DI/tests/
"
,
"Aether
\\
Tests
\\
Database
\\
"
:
"
packages/Database/tests/
"
,
"Aether
\\
Tests
\\
Entity
\\
"
:
"
packages/Entity/tests/
"
,
"Aether
\\
Tests
\\
Events
\\
"
:
"
packages/Events/tests/
"
,
"Aether
\\
Tests
\\
Filesystem
\\
"
:
"
packages/Filesystem/tests/
"
,
"Aether
\\
Tests
\\
Foundation
\\
"
:
"
packages/Foundation/tests/
"
,
"Aether
\\
Tests
\\
Http
\\
"
:
"
packages/Http/tests/
"
,
"Aether
\\
Tests
\\
Routing
\\
"
:
"
packages/Routing/tests/
"
,
"Aether
\\
Tests
\\
Support
\\
"
:
"
packages/Support/tests/
"
}
},
"config"
: {
"platform"
: {
"php"
:
"
8.3.0
"
},
"preferred-install"
:
"
dist
"
,
"sort-packages"
:
true
}
}
Back
|
FazBrowse Home
|
New Git URL