Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.6k
[Test] Symfony framework dagger module#59240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:7.4
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
4d80f46
8aa3aa9
44abc51
ceff602
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/sdk/** linguist-generated | ||
/entrypoint.php linguist-generated |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/sdk | ||
/vendor |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Dagger PHP SDK | ||
## Initializing the dagger runtime on this project | ||
You'll need to do this before you can run the dagger command | ||
``` bash | ||
dagger init --sdk=php . | ||
``` | ||
## Running the phpstan tests | ||
### Running phpstan on the entire repository | ||
``` bash | ||
dagger call phpstan --source=. | ||
``` | ||
### Running phpstan on all components | ||
``` bash | ||
dagger call phpstan-components --source=. | ||
``` | ||
### Running phpstan on a specific component | ||
``` bash | ||
dagger call phpstan-component --source=. --component=Asset | ||
``` | ||
## Running psalm tests | ||
### Running psalm on the entire repository | ||
``` bash | ||
dagger call psalm --source=. | ||
``` | ||
### Running psalm on all components | ||
``` bash | ||
dagger call psalm-components --source=. | ||
``` | ||
### Running psalm on a specific component | ||
``` bash | ||
dagger call psalm-component --source=. --component=Asset | ||
``` | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "daggermodule/symfony", | ||
"description": "", | ||
"version": "1.0.0", | ||
"minimum-stability": "dev", | ||
"license": "proprietary", | ||
"authors": [ | ||
], | ||
"repositories": [ | ||
{ | ||
"type": "path", | ||
"url": "./sdk" | ||
} | ||
], | ||
"require": { | ||
"php": "^8.1", | ||
"dagger/dagger": "*@dev" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"DaggerModule\\": "src/" | ||
} | ||
}, | ||
"config": { | ||
"platform": { | ||
"php": "8.3.7" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.