-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from preprocess/develop
The great refactoring!
- Loading branch information
Showing
10 changed files
with
19 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,29 @@ | ||
{ | ||
"type": "pre-macro", | ||
"name": "pre/class-accessors", | ||
"license": "MIT", | ||
"require": { | ||
"pre/plugin": "^0.6" | ||
"pre/plugin": "^0.7" | ||
}, | ||
"autoload": { | ||
"files": [ | ||
"src/bootstrap.php", | ||
"src/expanders.php" | ||
], | ||
"psr-4": { | ||
"Pre\\ClassAccessors\\": "src" | ||
} | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^5.0" | ||
"phpunit/phpunit": "^5.0|^6.0" | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Pre\\ClassAccessors\\": "tests" | ||
} | ||
}, | ||
"extra": { | ||
"macros": [ | ||
"src/macros.yay" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
# Pre Class Accessors | ||
|
||
Documentation can be found at [preprocess.io](https://preprocess.io/docs#class-accessors). | ||
|
||
## Versioning | ||
|
||
This library follows [Semver](http://semver.org). According to Semver, you will be able to upgrade to any minor or patch version of this library without any breaking changes to the public API. Semver also requires that we clearly define the public API for this library. | ||
|
||
All methods, with `public` visibility, are part of the public API. All other methods are not part of the public API. Where possible, we'll try to keep `protected` methods backwards-compatible in minor/patch versions, but if you're overriding methods then please test your work before upgrading. |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--DESCRIPTION-- | ||
|
||
Test accessors | ||
Test class accessors macros | ||
|
||
--GIVEN-- | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
--DESCRIPTION-- | ||
|
||
Test accessor fallbacks | ||
Test class accessors fallback macros | ||
|
||
--GIVEN-- | ||
|
||
|